IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> Echarts 象形柱状图(pictorialBar) -> 正文阅读

[JavaScript知识库]Echarts 象形柱状图(pictorialBar)

效果图:
在这里插入图片描述
实现:

<template>
  <div class="chart_wrap">
    <div class="MainPopulation_chart" ref="MainPopulation_chart"></div>
  </div>
</template>
<script>
import Bus from "@/utils/bus";
import * as echarts from "echarts";

export default {
  name: "MainPopulation",
  props: {
    currentTimeArray: {
      type: Object,
      default: () => {
        return {};
      },
    },
    activeName: {
      type: String,
      default: "",
    },
    data: {
      type: Object,
      default: () => {
        return {
          data_X: ["第一", "第二", "第三", "第四", "第五", "第六"],
          data_Y: [10, 20, 30, 5, 40, 60],
        };
      },
    },
  },
  data() {
    return {
      myChart: null,
      rate: 30, //优良率
    };
  },
  mounted() {
    this.init();
  },
  methods: {
    init() {
      this.myChart = this.$echarts.init(this.$refs.MainPopulation_chart);
      this.myChart.clear();
      this.crawPie(this.myChart, this.data.data_X, this.data.data_Y);

      var that = this;
      window.addEventListener("resize", function () {
        that.myChart.resize();
      });
      that.myChart.on("click", "series.pie", function (params) {
        Bus.$emit("ThreeSeriesName", params.name);
      });
    },
    crawPie(myChart, data_X, data_Y) {
      let barTopColor = [
        "#E8C50B",
        "#0CD7E2",
        "#1EAAFE",
        "white",
        "black",
        "#C23531",
      ];
      let barBottomColor = [
        "rgba(232, 197, 11,0.1)",
        "rgba(12, 215, 226, 0.1)",
        "rgba(30, 170, 254, 0.1)",
        "rgba(255,255,255,0.1)",
        "rgba(0,0,0,0.1)",
        "rgba(194,53,49, 0.1)",
      ];

      myChart.setOption({
        grid: {
          top: "15%",
          bottom: "20%",
          left: "3%",
          right: "3%",
        },
        xAxis: {
          data: data_X,

          axisTick: {
            show: false,
          },
          axisLine: {
            show: false,
          },
          axisLabel: {
            show: true,
            interval: 0,
            // rotate: -30,
            margin: 25,
            align: "center",
            textStyle: {
              fontSize: 12,
              color: "#ffffff",
            },
          },
        },
        yAxis: {
          splitLine: {
            show: false,
          },
          axisTick: {
            show: false,
          },
          axisLine: {
            show: false,
          },
          axisLabel: {
            show: false,
          },
        },
        series: [
          {
            name: "柱顶部",
            type: "pictorialBar",
            symbolSize: [26, 10], // [36, 10],
            symbolOffset: [0, -5], // [0, -5]
            z: 12,
            itemStyle: {
              normal: {
                color: function (params) {
                  return barTopColor[params.dataIndex];
                },
              },
            },
            label: {
              show: true,
              position: "top",
              fontSize: 20,
              fontFamily: "tenxu",
              formatter: "{c}",
            },
            symbolPosition: "end",
            data: data_Y,
          },
          {
            name: "柱底部",
            type: "pictorialBar",
            symbolSize: [26, 10], // [36, 10]
            symbolOffset: [0, 5], // [0, 5]
            z: 12,
            itemStyle: {
              normal: {
                color: function (params) {
                  return barTopColor[params.dataIndex];
                },
              },
            },
            data: data_Y,
          },
          {
            name: "第一圈",
            type: "pictorialBar",
            symbolSize: [46, 16], // [56, 16]
            symbolOffset: [0, 11], // [0, 11]
            z: 11,
            itemStyle: {
              normal: {
                color: function (params) {
                  return barTopColor[params.dataIndex];
                },
                opacity: 0.2,
              },
            },
            data: data_Y,
          },
          {
            name: "第二圈",
            type: "pictorialBar",
            symbolSize: [64, 22], // [74, 22]
            symbolOffset: [0, 17], // [0, 17]
            z: 10,
            itemStyle: {
              normal: {
                color: function (params) {
                  return barTopColor[params.dataIndex];
                },
                opacity: 0.1,
              },
            },
            data: data_Y,
          },
          {
            type: "bar",
            itemStyle: {
              normal: {
                // 中间柱子渐变色
                color: function (params) {
                  return new echarts.graphic.LinearGradient(0, 0, 0, 1, [
                    {
                      offset: 1,
                      color: barTopColor[params.dataIndex],
                    },
                    {
                      offset: 0,
                      color: barBottomColor[params.dataIndex],
                    },
                  ]);
                },
                opacity: 0.8,
              },
            },
            z: 16,
            silent: true,
            barWidth: 26,
            barGap: "-100%", // Make series be overlap
            data: data_Y,
          },
        ],
      });
    },
  },
  computed: {
    chartShow() {
      return this.$store.state.chartShow;
    },
  },
  watch: {
    chartShow: function () {
      var that = this;
      setTimeout(function () {
        that.myChart.resize();
        that.init();
      }, 400);
    },
    activeName: function () {
      var that = this;
      that.myChart.resize();
    },

    data: {
      deep: true,
      immediate: true,
      handler(val) {
        this.init();
      },
    },
  },
};
</script>
<style scoped lang="scss">
.chart_wrap {
  position: relative;
  width: 100%;
  max-width: 615px;
  height: 246px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 15px;
}
.MainPopulation_chart {
  width: 100%;
  max-width: 615px;
  height: 246px;
  position: absolute;
  left: 0px;
  top: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
</style>

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-03-16 22:12:45  更:2022-03-16 22:13:20 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 6:49:49-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码