• echart的tooltip显示不同的单位


    效果

    在这里插入图片描述

    实现

    在每个series中添加不同的
    tooltip: {
    valueFormatter: function (value) {
    return value.toFixed(0) + ‘A’;
    }
    },

    代码如下

    var option = {
      // grid: {
      //           left: '-13vw',//左边距72px
      //           right: '32%',
      //           bottom: '64%',
      //           top: '16%',
      //           containLabel: false
      //         },
      backgroundColor: "white",
      title: [{
          text: '.',
    
          x: 15,
          y: '20',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 20,
              fontWeight: '500',
              color:"transparent",
          }
      }, {
          text: '.',
          x: "11",
          y: '5',
          textBaseline: 'middle',
          textStyle: {
              color:'#cccccc',
              fontSize: 16,
              fontWeight: '100'
          }
      }, {
          text: '最新',
          x2: 235,
          y: '10',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: '最小',
          x2: 165,
          y: '10',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: '最大',
          x2: 95,
          y: '10',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: '平均',
          x2: 20,
          y: '10',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: in_new,
          x2: 235,
          y: '26',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: in_min,
          x2: 165,
          y: '26',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: in_max,
          x2: 95,
          y: '25',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: in_avg,
          x2: 20,
          y: '25',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: out_new,
          x2: 235,
          y: '40',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: out_min,
          x2: 165,
          y: '40',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
          text: out_max,
          x2: 95,
          y: '40',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }, {
    
          text: out_avg,
          x2: 20,
          y: '40',
          textBaseline: 'middle',
          textStyle: {
              fontSize: 12,
              fontWeight: '100'
          }
      }],
      legend: [{
          x2: 300,
          y: 20,
          icon: 'rect',
          itemGap: 3,
          itemWidth: 11,
          itemHeight: 11,
          orient: 'vertical',
          data: ['接收', '发送']
      }],
      grid: [{
          left: 20,
          right: 20,
          top: 80,
          bottom: 20,
          containLabel: true
      }],
      
      dataZoom: {
          type: 'inside',
          filterMode: 'filter',
          orient: 'horizontal',
          xAxisIndex: [0],
      },
      tooltip: {
          trigger: 'axis',
          axisPointer: {
              lineStyle: {
                  color: '#57617B'
              }
          },
    
          
          // formatter: function (params) {
          //         //文字加单位
          //         var relVal = params[0].name;
          //         for (var i = 0, l = params.length; i < l; i++) {
          //           relVal +=
          //             "
    " +
    // params[i].marker + // params[i].seriesName + // " : " + // params[i].value + // "%"; // } // return relVal; // }, }, xAxis: [{ type: 'category', boundaryGap: false, axisLine: { lineStyle: { color: '#57617B' } }, data: date }], yAxis: { type: 'value', axisTick: { show: false }, axisLine: { lineStyle: { color: '#57617B' } }, axisLabel: { formatter: '{value}', textStyle: { fontSize: 12 } }, splitLine: { lineStyle: { color: '#cccccc' } }, }, series: [{ name: '电流', type: 'line', showSymbol: false, tooltip: { valueFormatter: function (value) { return value.toFixed(0) + 'A'; } }, lineStyle: { normal: { width: 0 } }, itemStyle: { normal: { color: 'rgba(0,0,255)' } }, areaStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(0,0,255, 1)' }, { offset: 0.8, color: 'rgba(0,0,255, 0.5)' }]) }, }, data: cur }, { name: '电压', tooltip: { valueFormatter: function (value) { return value.toFixed(0) + 'V'; } }, type: 'line', showSymbol: false, lineStyle: { normal: { width: 0 } }, itemStyle: { normal: { color: 'rgba(0,255,0)' } }, areaStyle: { normal: { color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{ offset: 0, color: 'rgba(0,255,0,1)' }, { offset: 0.8, color: 'rgba(0,255,0, 0.5)' }]) }, }, data: vol }, { name: '电容', type: 'line', tooltip: { valueFormatter: function (value) { return value.toFixed(0) + 'Kwh'; } }, showSymbol: true, lineStyle: { normal: { width: 2 } }, itemStyle: { normal: { color: 'black' } }, data: cap }, ] };
    • 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
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
  • 相关阅读:
    25期代码随想录算法训练营第十三天 | 栈与队列 part 2
    uniapp小程序刮刮乐抽奖
    js用普通DIV模拟A标签
    神经网络 深度神经网络,神经网络进化过程图
    Vue3 + Element-plus + TS —— 动态表格自由编辑
    JUC中的设计模式
    IDEA 2023.2.2 使用 Scala 编译报错 No scalac found to compile scala sources
    Vue v-for、v-if、v-show常见问题
    《攻守道》笔记(3)
    htb-cozyhosting
  • 原文地址:https://blog.csdn.net/m0_56666791/article/details/134317369