Echarts。 3d柱状图

文章目录


效果

在这里插入图片描述
参考了https://www.makeapie.com/explore.html

代码

代码如下(示例):

let option = {
        title: {
          show: false,
        },
        grid: {
          left: 100,
          bottom: 100,
        },
        xAxis: {
          splitLine: {
            show: false,
          },
          axisLine: {
            show: false,
          },
          splitArea: {
            show: false,
          },
          axisTick: {
            show: false,
          },
          axisLabel: {
            inside: false,
            textStyle: {
              color: "#fff",
              fontWeight: "normal",
              fontSize: 15,
            },
            interval:0,
            margin: 30, //刻度标签与轴线之间的距离。
          },
          
          data: ["11", "22", "33", "44", "55", "66"],
        },
        yAxis: {
          axisLine: {
            show: false,
          },
          axisLabel: {
            show: false,
          },
          splitLine: {
            show: false,
          },
          axisTick: {
            show: false,
          },
        },
        series: [
          {
          // 下边加阴影
            name: "",
            type: "pictorialBar",
            // symbol: path,
            symbolSize: [81, 25],
            symbolOffset: [0, 12],
            z: 1,
            itemStyle: {
              opacity: 1,
              color: function (params) {
                return colorList[params.dataIndex];
              },
              shadowColor: "rgba(115, 106, 28, .7)",
              shadowBlur: 3,
              shadowOffsetX: 0,
              shadowOffsetY: 2,
            },
            data: [1, 1, 1, 1, 1, 1],
          },
          {
          // 柱状图
            name: "2020",
            type: "bar",
            barWidth: 81,
            barGap: "-100%",
            z: 10,
            itemStyle: {
              color: function (params) {
                return colorList[params.dataIndex];
              },
            },
            data: data1,
          },
          {
          // 图标。这里有个缺点,就是data1的数据不能重复,否则图标会重复,没想到别的好的方法
            name: "",
            type: "pictorialBar",
            symbol: function (params) {
            // 这里的params是柱状图的值,即data1
                let idx = data1.indexOf(params)
                return 'image://' + path[idx];
              },
            symbolSize: [75, 57],
            symbolOffset: [0, -50],
            z: 15,
            symbolPosition: "end",
            data: data1,
          },
          {
          // 图标下面的黑色面,可以使用颜色
            name: "",
            type: "pictorialBar",
            symbol: function (params) {
                let idx = data1.indexOf(params)
                return 'image://' + iconPath[idx];
              },
            symbolSize: [81, 25],
            symbolOffset: [0, -12],
            z: 12,
            symbolPosition: "end",
            data: data1,
          },
        ],
      };
      myChart.setOption(option);
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值