vue echarts实现单3D立体柱状图叠加效果

//引入echarts依赖
import { LineChart, BarChart,PictorialBarChart  } from 'echarts/charts';

<div class="countNum" ref="wealBar"></div>

 data() {
    return {
      labelData: ["凌晨", "上午", "中午", "下午", "晚上"],
    };
  },

 async mounted() {
    await this.receiveRights(); //财富值查询
  },
methods: {
    receiveRights() {
      if (this.$refs.wealBar) {
        this.myChartBar = this.$echarts.init(this.$refs.wealBar);
        let option;
        let yData = [12,43,555,33,21];
        let barWidth = 14;
        option = {
          grid: {
            top: "24%",
            left: "8%",
            bottom: "2%",
            right: "8%",
            containLabel: true,
          },
          animation: false,
          xAxis: {
            type: "category",
            axisTick: {
              // x轴刻度线
              show: false,
            },
            axisLine: {
              lineStyle: {
                color: "#27272E",
                width: 0, //x轴 是否显示
                type: "dotted", //'dotted'虚线 'solid'实线
              },
            },
            // x轴的字体样式
            axisLabel: {
              show: true,
              textStyle: {
                color: "#27272E",
                fontFamily: "zihun107",
                fontSize: 12,
              },
            },
            data: this.labelData,
          },
          yAxis: {
            //修改y轴间距
            type: "value",
            min: 0,
            max: function (value) {
              //取最大值向上取整为最大刻度
              return Math.ceil(value.max) + 10;
            },
            scale: true, //自适应
            minInterval: function (value) {
              //分割刻度
              return Math.ceil(value.max / 10);
            },
            axisTick: {
              // y轴刻度线
              show: false,
            },
            splitLine: {
              // 网格线
              show: false,
            },
            splitArea: { show: false }, // 保留网格区域
            axisLabel: {
              show: false,
              textStyle: {
                color: "#87878E",
              },
              // 这里重新定义就可以
              formatter: function (value) {
                return `${value}`;
              },
              textStyle: {
                color: "#87878E",
                fontSize: "16",
              },
            },
          },
          series: [
            {
              name: "顶部三角",
              type: "pictorialBar",
              symbol: "triangle",
              symbolSize: [barWidth, 10],
              symbolOffset: [0, -10],
              symbolPosition: "end",
              z: 12,
              label: {
                normal: {
                  show: true ,
                  position: "top",
                  //数值样式
                  fontFamily: "zihun107",
                  color: "#bf2323",
                  fontSize: 12,
                  //顶部数据展示,目前只展示最大值
                  formatter: function (params) {
                    let maxIndex = 0;
                    for (const i in yData) {
                       maxIndex = Number(yData[i])>Number(yData[maxIndex])?i:maxIndex
                    }
                    return params.dataIndex==maxIndex?params.value + "次":"";
                  },
                },
              },
              color: new this.$echarts.graphic.LinearGradient(1, 1, 0, 1, [
                { offset: 0, color: "#ceccc9" },
                { offset: 0.5, color: "#969799" },
                { offset: 0.5, color: "#b1adad" },
                { offset: 1, color: "#ece4d2" },
              ]),
              data: yData,
            },
            {
              type: "bar",
              barWidth: barWidth,
              barGap: "10%", // Make series be overlap
              barCateGoryGap: "10%",markPoint: {
                data: [
                  {
                    type: 'max',
                    name: '最大值'
                  }, {
                    type: 'min',
                    name: '最小值'
                  }
                ]
              },
              itemStyle: {
                normal: {
                  color: new this.$echarts.graphic.LinearGradient(1, 1, 0, 1, [
                    { offset: 0, color: "#ceccc9" },
                    { offset: 0.5, color: "#969799" },
                    { offset: 0.5, color: "#b1adad" },
                    { offset: 1, color: "#ece4d2" },
                  ]),
                },
              },
              data: yData,
            },
          ],
        };
        this.myChartBar.setOption(option);
      }
    },
  },
};

//备注:如添加了外部字体等元素时,渲染时可能会出现加载不出外部字体的情况
//处理方式:渲染时先去加载字体文件

 document.fonts.ready.then(function() {
            that.myChartBar = that.$echarts.init(that.$refs.wealBar);
            that.myChartBar.resize();
        });

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值