当前位置:   article > 正文

Echarts实现3D柱状图_echarts 3d柱状图

echarts 3d柱状图

Echarts实现3D柱状图


1、安装Echarts

npm i echarts
  • 1

2、进行以下配置

<template>
  <div class="page">
    <div ref="chartDom" class="bar" id="chartOne"></div>
  </div>
</template>

<script setup>
import * as echarts from "echarts";
import { onMounted } from "vue";

onMounted(() => {
  getEcharts3DBar();
});

function getEcharts3DBar() {
  const chartDom = document.getElementById("chartOne");
  const myChart = echarts.init(chartDom);
  // 产值
  const zzx1 = [27, 38, 41, 21, 27];
  const zx = zzx1.map((item) => {
    return 100 - item;
  })

  var barWidth = 40;
  let option = {
    backgroundColor: "#010243",
    // tooltip: {
    //   trigger: "axis",
    //   axisPointer: {
    //     // 坐标轴指示器,坐标轴触发有效
    //     type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
    //   },
    //   formatter: function (e) {
    //     // console.log(e);
    //     var str =
    //       e[6].axisValue +
    //       "<br>" +
    //       "<span style='display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:" +
    //       e[6].color.colorStops[0].color +
    //       ";'></span>" +
    //       "" +
    //       e[6].seriesName +
    //       " : " +
    //       e[6].value +
    //       "%<br>" +
    //       "<span style='display:inline-block;margin-right:5px;border-radius:10px;width:10px;height:10px;background-color:" +
    //       e[8].color.colorStops[0].color +
    //       ";'></span>" +
    //       "" +
    //       e[8].seriesName +
    //       " : " +
    //       e[8].value +
    //       "%";
    //     return str;
    //   },
    // },
    grid: {
      left: "2%",
      right: "4%",
      bottom: "4%",
      top: "16%",
      containLabel: true, // grid 区域是否包含坐标轴的刻度标签
    },
    legend: {
      show: false,
      data: ["计划产值", "实际产值"],
      top: 1,
      textStyle: {
        color: "#00ffff",
        fontSize: 14,
      },
      itemWidth: 12,
      itemHeight: 10,
      itemGap: 35,
      color: "#242424",
      selectedMode: false,
    },
    xAxis: {
      type: "category",
      data: [
        "A",
        "B",
        "C",
        "D",
        "E",
      ],
      axisLine: { // 坐标轴线的样式
        show: true,
        lineStyle: {
          color: "#15205B",
        },
      },
      axisTick: {
        show: false,
      },
      axisLabel: {
        textStyle: {
          fontFamily: "Microsoft YaHei",
          color: "#fff", // x轴颜色
          fontWeight: "normal",
          fontSize: "14",
          lineHeight: 22,
        },
        interval: 0, //标签设置为全部显示
        margin: 15,
        lineHeight: 15,
        formatter: function (params) {
          var newParamsName = params + "\n质量合格率";
          //将最终的字符串返回
          return newParamsName;
        },
      },
    },
    yAxis: {
      min: 0,
      max: 100,
      type: "value",

      axisLine: {
        show: true,
        lineStyle: {
          color: "#15205B",
        },
      },
      splitLine: {
        show: false,
        lineStyle: {
          color: "rgba(135,140,147,1)", //左侧显示线
        },
      },
      axisTick: {
        show: false,
      },
      axisLabel: {
        formatter: "{value}%",
        textStyle: {
          color: "#c9c9c9",
          fontSize: 14,
        },
      },
    },
    series: [
      // 产值中间正方形
      {
        type: "pictorialBar",
        symbol: "diamond",

        symbolSize: [barWidth, 8],
        symbolOffset: [9.5, -4.5],
        symbolPosition: "end",
        z: 12,
        color: "#3185FF",
        data: zzx1,
      },
      //  产值底部正方形
      {
        type: "pictorialBar",
        symbol: "diamond",
        symbolSize: [barWidth, 8],
        // symbolOffset: [-26, 4],
        symbolOffset: [9.5, 0],
        z: 12,
        color: "#161D6E",
        data: zzx1,
      },
      // 产值上部正方形
      {
        data: [100, 100, 100, 100, 100],
        type: "pictorialBar",
        symbol: "diamond",
        symbolSize: [barWidth, 8],
        // symbolOffset: [-26, -4],
        symbolOffset: [9.5, -4.5],
        color: "#283190",

        symbolPosition: "end",
      },
      // 产值进度柱子
      {
        name: "计划产值",
        type: "bar",
        barWidth: barWidth,
        stack: "1",
        itemStyle: {
          normal: {
            opacity: 0.7,
            color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
              {
                offset: 0,
                color: "#2863D2",
              },
              {
                offset: 1,
                color: "#161D6E",
              },
            ]),
            barBorderRadius: 0,
          },
        },
        label: {
          show: true,
          position: ["-18", "-18"],
          color: "#00f8ff",
          fontSize: 12,
        },
        data: zzx1,
      },
      // 产值进度柱子
      {
        name: "中间的线",
        type: "bar",
        barWidth: 0.5,
        barGap: "-50%",
        itemStyle: {
          normal: {
            opacity: 0.7,
            color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
              {
                offset: 0,
                color: "#2863D2",
              },
              {
                offset: 1,
                color: "#161D6E",
              },
            ]),
          },
        },
        data: zzx1,
      },
      // 产值上面进度柱子
      {
        data: zx,
        type: "bar",
        barWidth: barWidth,
        stack: "1",
        zlevel: -1,
        itemStyle: {
          normal: {
            opacity: 0.7,
            color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
              {
                offset: 0,
                color: "#182075",
              },
              {
                offset: 1,
                color: "#182075",
              },
            ]),
            barBorderRadius: 0,
          },
        },
      }
    ],
  };
  option && myChart.setOption(option);
}
</script>
<style lang="scss" scoped>
.page {
  width: 100%;
  height: 100%;
  .bar {
    width: 800px;
    height: 800px;
  }
}
</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270

3、效果图:
在这里插入图片描述

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/861147
推荐阅读
相关标签
  

闽ICP备14008679号