• echarts 双Y轴折线图


    在这里插入图片描述

    import { useEffect, useState } from 'react';
    import * as echarts from 'echarts';
    
    /**
     * by Shiwu
     */
    
    export default function DoubleLine() {
      useEffect(() => {
        const container = document.getElementById('DoubleLineContainer');
        console.log('DoubleLineContainer', container)
        // 基于准备好的dom,初始化echarts实例
        var myChart = echarts.init(container);
        let option = {
          title: {
            text: '资产总览',
            top: 10,
            left: 10
          },
          tooltip: {
            trigger: 'axis',
            axisPointer: { // 鼠标移动覆盖 显示横坐标虚线
              type: 'cross'
            },
            formatter: "{a} 
    {b} : {c}次"
    }, // toolbox: { // show: true, // top: 10, // right: 10, // feature: { // mark: { show: true }, // magicType: { show: true, type: ['line', 'bar'] }, // restore: { show: true }, // saveAsImage: { show: true } // } // }, grid: { top: 60, right: 70, bottom: 30, left: 60 }, legend: { top: 0, left: 'center', data: ['资产数', '存储量'] }, calculable: true, xAxis: [ { type: 'category', splitLine: { show: false }, axisTick: { show: false }, data: ['201901', '201902', '201903', '201904', '201905', '201906', '201907', '201908', '201909', '201910', '201911', '201912'] } ], yAxis: [ { type: 'value', splitLine: { show: false }, // name:"管\n线\n查\n询\n次\n数\n︵\n次\n︶", // nameLocation:"center", // nameGap:35, // nameRotate:0, // nameTextStyle:{ // fontSize: 16, // }, //默认以千分位显示,不想用的可以在这加一段 axisLabel: { //调整左侧Y轴刻度, 直接按对应数据显示 show: true, showMinLabel: true, showMaxLabel: true, formatter: function (value) { return value; } }, }, { type: 'value', splitLine: { show: false }, // name:"在\n线\n调\n用\n次\n数\n︵\n次\n︶", // nameLocation:"center", // nameGap:35, // nameRotate:0, // nameTextStyle:{ // fontSize: 16, // }, //默认以千分位显示,不想用的可以在这加一段 axisLabel: { //调整左侧Y轴刻度, 直接按对应数据显示 show: true, showMinLabel: true, showMaxLabel: true, formatter: function (value) { return value; } } } ], series: [ { name: '资产数', type: 'line', smooth: true, yAxisIndex: 0, data: [35, 15, 8, 12, 11, 6, 3, 0, 0, 0, 0, 0], itemStyle: { normal: { label: { show: true } } }, }, { name: '存储量', type: 'line', smooth: true, yAxisIndex: 1, data: [0.1, 0.1, 0.1, 0.1, 0.7, 0.7, 0.7, 0.7, 0.3, 0.3, 0.3, 0.3], itemStyle: { normal: { label: { show: true } } }, } ] }; // 使用刚指定的配置项和数据显示图表。 myChart.setOption(option); }, []); return ( <div id="DoubleLineContainer" style={{ width: '100%', height: 400 }}></div> ); }
    • 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
  • 相关阅读:
    归纳所猜半结论推出完整结论:CF1592F1
    HTML+CSS大作业:基于HMTL校园学校网页设计题材【我的学校网站】
    windows下载虚拟机virtualBox
    东莞理工学院举办第二届“火焰杯”软件测试高校就业选拔赛颁奖典礼
    Postman使用总结
    react使用react-split-pane分割面板
    嵌入式系统开发【深入浅出】 IWDG 与 WWDG
    浅谈产业园区规划的意义、分类及功能!
    针对CSP-J/S的每日一练:Day7
    Ceres 三部曲 之 入门简介
  • 原文地址:https://blog.csdn.net/hzxOnlineOk/article/details/125904748