• React 使用echarts绘制个性滚动柱状图


    在这里插入图片描述
    在这里插入图片描述

    在这里插入图片描述

    重点:

    1. 柱状图顶端放置图片
    2. 柱状图循环滚动
    3. 触发滚动停止,柱子变色图片更改,离开继续滚动

    上代码

    import React from "react";
    import * as echarts from "echarts";
    import styles from "./index.less";
    import cylinderImg from "../../assets/images/serviceAssets/IconLeftMiddle.png";
    import { getDataResourceServiceBnsjhjpm } from "../../services/yj";
    
    class CylinderDiagram extends React.Component {
      state = {
        dataResource: [],
      };
      loadCylinder = () => {
        const { dataResource } = this.state;
        var cylinderChart = echarts.init(document.getElementById("cylinder"));
        var option;
        var img = new Image();
        img.src = { cylinderImg };
        let imgSrc1 = require("../../assets/images/serviceAssets/IconLeftMiddle2.png");
        let imgSrc2 = require("../../assets/images/serviceAssets/IconLeftMiddle.png");
        const seriesLabel = {
          show: false,
          color: "pink",
        };
        let timer = null;
    
        cylinderChart.clear();
        clearInterval(timer);
        let seriesData = dataResource.map((i) => {
          return i.dataindex;
        });
        let xAxisData = dataResource.map((i) => {
          return i.dataitem;
        });
        let markPointDatum = [];
        for (var i = 0; i < seriesData.length; i++) {
          let _obj = {
            coord: [i, seriesData[i]],
            value: seriesData[i],
          };
          markPointDatum.push(_obj);
        }
        option = {
          title: {
            text: "单位:类",
            textStyle: {
              fontSize: 12,
              fontFamily: "PingFangSC-Regular",
              color: "#7ba7aa",
            },
            left: 10,
            top: 10,
          },
          tooltip: {
            trigger: "axis",
            axisPointer: {
              type: "none",
            },
          },
          grid: {
            left: 35,
          },
          toolbox: {
            show: false,
            feature: {
              saveAsImage: {},
            },
          },
          yAxis: {
            splitLine: {
              show: true,
              lineStyle: {
                type: "dashed",
                color: "#204652",
              },
            },
            type: "value",
            axisLabel: {
              formatter: "{value}",
              textStyle: {
                color: "rgba(204,255,254,0.70)", // 更改坐标轴文字颜色
                fontSize: 11, // 更改坐标轴文字大小
              },
            },
          },
          xAxis: {
            type: "category",
            inverse: false,
            data: xAxisData,
            axisLabel: {
              formatter: function (value) {
                if (value.length > 2) {
                  return value.substring(0, 2) + "..";
                } else {
                  return value;
                }
              },
              margin: 10,
              textStyle: {
                color: "rgba(204,255,254,0.70)", // 更改坐标轴文字颜色
                fontSize: 13, // 更改坐标轴文字大小
              },
            },
          },
          series: [
            {
              name: "数据资源",
              type: "bar",
              data: seriesData,
              label: seriesLabel,
              color: "rgba(0,215,255,0.60)",
              barWidth: "27px",
    
              markPoint: {
                symbol: "image://" + imgSrc1,
                symbolSize: 25,
                symbolOffset: [-1, -15],
                label: {
                  formatter: "  ",
                  borderWidth: 1,
                  borderRadius: 4,
                  padding: [10, 10],
                  position: "right",
                  distance: 0,
                },
                // data: [{ type: 'max' }],
                data: markPointDatum,
              },
              itemStyle: {
                barBorderRadius: [50, 50, 0, 0],
              },
            },
          ],
          // 自动滚动
    
          // dataZoom: [
          //   //滑动条
          //   {
          //     show: true, //是否显示滑动条
          //     type: "slider", // 这个 dataZoom 组件是 slider 型 dataZoom 组件
          //     startValue: 0, // 从头开始。
          //     endValue: 4, // 一次性展示5个。
          //   },
          // ],
          dataZoom: [
            {
              type: "inside",
              startValue: 0,
              endValue: 4,
              minValueSpan: 4,
              maxValueSpan: 4,
              xAxisIndex: [0],
              zoomOnMouseWheel: false, // 关闭滚轮缩放
              moveOnMouseWheel: true, // 开启滚轮平移
              moveOnMouseMove: true, // 鼠标移动能触发数据窗口平移
            },
            {
              type: "slider",
              realtime: true,
              startValue: 0,
              endValue: 4,
              width: "80%",
              height: 0,
              xAxisIndex: [0], // 控制x轴滚动
              fillerColor: "rgba(154, 181, 215, 1)", // 滚动条颜色
              borderColor: "rgba(17, 100, 210, 0.12)",
              backgroundColor: "#cfcfcf", //两边未选中的滑动条区域的颜色
              handleSize: 0, // 两边手柄尺寸
              showDataShadow: false, //是否显示数据阴影 默认auto
              showDetail: false, // 拖拽时是否展示滚动条两侧的文字
              bottom: "23%",
            },
          ],
        };
        option && cylinderChart.setOption(option);
        // 使用刚指定的配置项和数据显示图表。
        timer = setInterval(function () {
          // 每次向后滚动一个,最后一个从头开始。
          if (option.dataZoom[0].endValue == seriesData.length - 1) {
            option.dataZoom[0].endValue = 4;
            option.dataZoom[0].startValue = 0;
          } else {
            option.dataZoom[0].endValue = option.dataZoom[0].endValue + 1;
            option.dataZoom[0].startValue = option.dataZoom[0].startValue + 1;
          }
          // cylinderChart.clear();
          cylinderChart.setOption(option, true);
        }, 2000);
    
        cylinderChart.on("mouseover", function (event) {
          clearInterval(timer);
          option.series[0].itemStyle.color = function (value, index) {
            return value.dataIndex === event.dataIndex
              ? "rgba(255,211,0,0.60)"
              : "rgba(0,215,255,0.60)";
          };
          option.series[0].markPoint.symbol = function (value, index) {
            return value === event.data
              ? "image://" + imgSrc2
              : "image://" + imgSrc1;
          };
          cylinderChart.setOption(option);
        });
        cylinderChart.on("mouseout", function (event) {
          option.series[0].itemStyle.color = "rgba(0,215,255,0.60)";
          option.series[0].markPoint.symbol = "image://" + imgSrc1;
          // option.series[0].markPoint.label.backgroundColor.image = imgSrc1;
          timer = setInterval(function () {
            // 每次向后滚动一个,最后一个从头开始。
            if (option.dataZoom[0].endValue == seriesData.length - 1) {
              option.dataZoom[0].endValue = 4;
              option.dataZoom[0].startValue = 0;
            } else {
              option.dataZoom[0].endValue = option.dataZoom[0].endValue + 1;
              option.dataZoom[0].startValue = option.dataZoom[0].startValue + 1;
            }
            // cylinderChart.clear();
            cylinderChart.setOption(option, true);
          }, 2000);
          cylinderChart.setOption(option, true);
        });
      };
      getDataResourceServiceBnsjhjpm = async () => {
        try {
          const res = await getDataResourceServiceBnsjhjpm();
          this.setState({ dataResource: res.data }, () => {
            this.loadCylinder();
          });
        } catch (error) {
          console.log(error);
        }
      };
      componentDidMount() {
        this.getDataResourceServiceBnsjhjpm();
      }
      render() {
        return (
          <div
            style={{ width: "100%", height: "118%" }}
            id="cylinder"
            className={styles.cylinder}
          ></div>
        );
      }
    }
    export default CylinderDiagram;
    
    
    • 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
  • 相关阅读:
    第七版教材下的PMP考试有多难?
    绝对值排序
    ATJ2157内存篇【炬芯音频芯片】---sct语法
    大数据-之LibrA数据库系统告警处理(ALM-12045 网络读包丢包率超过阈值)
    vue文档学习笔记之列表渲染---展示过滤或排序后的结果
    1、如何抓取Modbus TCP/UDP 数据包实战
    视频监控系统/安防视频平台EasyCVR广场视频细节优化
    【接口测试】POST请求提交数据的三种方式及Postman实现
    C++三大特性之继承(一)
    NSSCTF第11页(3)
  • 原文地址:https://blog.csdn.net/weixin_44768794/article/details/126096792