• [echarts] 两侧堆叠柱状图


    在这里插入图片描述
    http://echarts.zhangmuchen.top/#/detail?cid=xOQSXIOQiK

    const myData = ['福田区', '罗湖区', '南山区', '盐田区', '宝安区', '龙岗区', '坪山区', '龙华区', '光明区', '大鹏区'];
    // 全彩屏,双基色屏,简易屏,条形屏
    const offLine = [
        [20, 40, 60, 60, 10, 20, 40, 20, 20, 10],
        [10, 30, 50, 20, 50, 30, 30, 40, 10, 20],
        [50, 20, 40, 10, 20, 40, 20, 30, 30, 30],
        [20, 10, 30, 40, 10, 10, 10, 40, 40, 40],
    ];
    
    const onLine = [
        [10, 20, 20, 40, 20, 10, 60, 60, 40, 20],
        [20, 10, 40, 30, 30, 50, 20, 50, 30, 10],
        [30, 30, 30, 20, 40, 20, 10, 40, 20, 50],
        [40, 40, 40, 10, 10, 10, 40, 30, 10, 20],
    ];
    
    const offLineSum = [100, 100, 180, 130, 90, 100, 100, 130, 100, 100];
    const onLineSum = [100, 100, 130, 100, 100, 90, 130, 180, 100, 100];
    
    // backgroundColor: '#11356D',
    option = {
        backgroundColor: '#11356D',
        /*    title: [
            {
                text: '脱机状态',
                top: '2%',
                left: '30%',
                textStyle: {
                    color: '#DC3239',
                    fontSize: 14,
                },
            },
            {
                text: '联机状态',
                top: '2%',
                right: '30%',
                textStyle: {
                    color: '#2087FE',
                    fontSize: 14,
                },
            },
        ],*/
        legend: [
            {
                // 图例
                top: '2%',
                left: 'center', // 图例距离左侧距离(此处水平居中)
                textStyle: {
                    // 图例文本样式
                    color: '#fff',
                },
                itemGap: 100,
    
                selectedMode: false, //图例点击失效
                data: ['脱机状态', '联机状态'],
            },
            {
                // 图例
                bottom: '45',
                left: 'center', // 图例距离左侧距离(此处水平居中)
                textStyle: {
                    // 图例文本样式
                    color: '#fff',
                },
                selectedMode: false, //图例点击失效
                data: ['全彩屏', '双基色屏', '简易屏', '条形屏'],
            },
        ],
        tooltip: {
            // 提示框
            show: true,
            trigger: 'axis',
            axisPointer: {
                // 坐标轴指示器配置项。
                type: 'shadow', // 'line' 直线指示器;'shadow' 阴影指示器.
            },
            // formatter: '{b}
    脱机: {c}' // 提示框所提示的文本内容
    formatter: function (params) { const fullScreenColor = ``; // 全彩屏颜色 const doubleScreenColor = ``; // 双基色屏颜色 const simpleScreenColor = ``; // 简易屏颜色 const lineScreenColor = ``; // 条形屏颜色 const fullScreen = params[0]; // 全彩屏序列 const doubleScreen = params[1]; // 双基色屏序列 const simpleScreen = params[2]; // 简易屏屏序列 const lineScreen = params[3]; // 条形屏屏序列 const bg = params[4]; // 背景区分联机与脱机 const status = bg.seriesName === '联机状态' ? `联机` : `脱机`; return ( `${fullScreen.name}(${status})
    `
    + `${fullScreenColor}${fullScreen.seriesName}${fullScreen.value}
    `
    + `${doubleScreenColor}${doubleScreen.seriesName}${doubleScreen.value}
    `
    + `${simpleScreenColor}${simpleScreen.seriesName}${simpleScreen.value}
    `
    + `${lineScreenColor}${lineScreen.seriesName}${lineScreen.value}
    `
    ); }, }, grid: [ { // 左边 show: false, left: '2%', top: 20, bottom: 60, containLabel: true, width: '43%', }, { // 中间 show: false, left: '55%', top: 40, bottom: 60, width: '14%', }, { // 右边 show: false, right: '2%', top: 20, bottom: 60, containLabel: true, width: '43%', }, ], // X轴线配置 xAxis: [ { // 左侧区域 gridIndex: 0, // x 轴所在的 grid 的索引,默认位于第一个 grid。[ default: 0 ] type: 'value', // 轴线类型: 数值轴 position: 'top', // 轴线位置(此处位于顶部) inverse: true, // 是否是反向坐标轴.[ default: false ] axisLine: { show: false, // 轴线不显示 }, axisTick: { show: false, // 轴线刻度不显示 }, axisLabel: { // 轴线刻度标签 show: true, // 显示刻度标签 textStyle: { // 标签样式 color: '#153D7D64', fontSize: 12, }, }, splitLine: { // 垂直于X轴的分隔线 show: true, // 显示分隔线 lineStyle: { // 分隔线样式 color: '#153D7D64', width: 1, type: 'solid', }, }, // 强制设置坐标轴分割间隔 // interval: 50, // min: 0, // 最小值 // max: 200 // 最大值 }, { // 中间区域 gridIndex: 1, show: false, // 中间部分不显示X轴 }, { // 右侧区域 gridIndex: 2, type: 'value', position: 'top', inverse: false, // 是否是反向坐标轴.[ default: false ] axisLine: { show: false, }, axisTick: { show: false, }, axisLabel: { show: true, textStyle: { color: '#153D7D64', fontSize: 12, }, }, splitLine: { show: true, lineStyle: { color: '#153D7D64', width: 1, type: 'solid', }, }, // 强制设置坐标轴分割间隔 // interval: 50, // min: 0, // 最小值 // max: 200 // 最大值 }, ], // Y轴线配置 yAxis: [ { // 左侧区域 gridIndex: 0, // y 轴所在的 grid 的索引,默认位于第一个 grid。[ default: 0 ] type: 'category', // 轴线类型: 类目轴 // 类目轴中 boundaryGap 可以配置为 true 和 false。默认为 true,这时候刻度只是作为分隔线,标签和数据点都会在两个刻度之间的带(band)中间。 boundaryGap: true, // 坐标轴两边留白策略,类目轴和非类目轴的设置和表现不一样。 inverse: true, // 是否是反向坐标轴.[ default: false ] position: 'right', // y轴的位置。'left' or 'right' axisLine: { show: false, // y轴线不显示 }, axisTick: { show: false, // y轴线刻度不显示 lineStyle: { // 刻度线样式 color: '#11356D', }, }, axisLabel: { show: false, // 刻度标签不显示 }, data: myData, // Y轴(这里是类目轴)的类目数据 }, { gridIndex: 1, // 中间区域 type: 'category', boundaryGap: true, inverse: true, position: 'left', // y轴的位置。'left' or 'right' axisLine: { show: false, }, axisTick: { show: false, }, axisLabel: { show: true, // 显示中间部分的Y轴刻度标签(中间的文字) textStyle: { // 标签样式 color: '#cccccc', fontSize: 12, }, }, data: myData, }, { // 右侧区域 gridIndex: 2, type: 'category', boundaryGap: true, inverse: true, position: 'left', axisLine: { show: false, }, axisTick: { show: false, lineStyle: { // 刻度线样式 color: '#153D7D', }, }, axisLabel: { show: false, }, data: myData, }, ], series: [ { name: '全彩屏', // 系列名称 type: 'bar', // barGap: 5, // 柱间距离 barWidth: 15, // 柱子宽度 xAxisIndex: 0, // 对应在X轴的grid索引 yAxisIndex: 0, // 对应在Y轴的grid索引 stack: '1', // 相同就是堆叠 // barGap:'-100%', //重叠 label: { show: true, position: 'top', color: '#F59A3F', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#F59A3F', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 鼠标指向高亮 show: true, label: { color: '#F59A3F96', // 高亮状态下柱条颜色 }, itemStyle: { color: '#F59A3F96', // 高亮状态下柱条颜色 }, }, data: offLine[0], // 系列中的数据内容数组 }, { name: '双基色屏', // 系列名称 type: 'bar', barWidth: 15, // 柱子宽度 xAxisIndex: 0, // 对应在X轴的grid索引 yAxisIndex: 0, // 对应在Y轴的grid索引 stack: '1', // 相同就是堆叠 label: { show: true, position: 'top', color: '#F2C751', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#F2C751', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 高亮 show: true, label: { color: '#F2C75196', // 高亮状态下柱条颜色 }, itemStyle: { color: '#F2C75196', // 高亮状态下柱条颜色 }, }, data: offLine[1], // 系列中的数据内容数组 }, { name: '简易屏', // 系列名称 type: 'bar', barWidth: 15, // 柱子宽度 xAxisIndex: 0, // 对应在X轴的grid索引 yAxisIndex: 0, // 对应在Y轴的grid索引 stack: '1', // 相同就是堆叠 label: { show: true, position: 'top', color: '#296FFB', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#296FFB', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 高亮 show: true, label: { color: '#296FFB96', // 高亮状态下柱条颜色 }, itemStyle: { color: '#296FFB96', // 高亮状态下柱条颜色 }, }, data: offLine[2], // 系列中的数据内容数组 }, { name: '条形屏', // 系列名称 type: 'bar', barWidth: 15, // 柱子宽度 xAxisIndex: 0, // 对应在X轴的grid索引 yAxisIndex: 0, // 对应在Y轴的grid索引 stack: '1', // 相同就是堆叠 label: { show: true, position: 'top', color: '#4AA5EA', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#4AA5EA', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 高亮 show: true, label: { color: '#4AA5EA96', // 高亮状态下柱条颜色 }, itemStyle: { color: '#4AA5EA96', // 高亮状态下柱条颜色 }, }, data: offLine[3], // 系列中的数据内容数组 }, // 脱机背景 { name: '脱机状态', // 系列名称 type: 'bar', // barGap: 5, // 柱间距离 barWidth: 21, // 柱子宽度 xAxisIndex: 0, // 对应在X轴的grid索引 yAxisIndex: 0, // 对应在Y轴的grid索引 // stack: '1', // 相同就是堆叠 barGap: '-120%', //重叠 itemStyle: { // 柱条样式。 // color: '#DC3239', color: 'transparent', borderWidth: 1, borderColor: '#DC3239', shadowColor: '#DC3239', shadowBlur: 20, }, emphasis: { scale: false, }, data: offLineSum, // 系列中的数据内容数组 }, { name: '全彩屏', // 系列名称 type: 'bar', barWidth: 15, // 柱子宽度 xAxisIndex: 2, // 对应在X轴的grid索引 yAxisIndex: 2, // 对应在Y轴的grid索引 stack: '2', // 相同就是堆叠 label: { show: true, position: 'top', color: '#F59A3F', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#F59A3F', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 鼠标指向高亮 show: true, label: { color: '#F59A3F96', // 高亮状态下柱条颜色 }, itemStyle: { color: '#F59A3F96', // 高亮状态下柱条颜色 }, }, data: onLine[0], // 系列中的数据内容数组 }, { name: '双基色屏', // 系列名称 type: 'bar', barWidth: 15, // 柱子宽度 xAxisIndex: 2, // 对应在X轴的grid索引 yAxisIndex: 2, // 对应在Y轴的grid索引 stack: '2', // 相同就是堆叠 label: { show: true, position: 'top', color: '#F2C751', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#F2C751', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 高亮 show: true, label: { color: '#F2C75196', // 高亮状态下柱条颜色 }, itemStyle: { color: '#F2C75196', // 高亮状态下柱条颜色 }, }, data: onLine[1], // 系列中的数据内容数组 }, { name: '简易屏', // 系列名称 type: 'bar', barWidth: 15, // 柱子宽度 xAxisIndex: 2, // 对应在X轴的grid索引 yAxisIndex: 2, // 对应在Y轴的grid索引 stack: '2', // 相同就是堆叠 label: { show: true, position: 'top', color: '#296FFB', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#296FFB', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 高亮 show: true, label: { color: '#296FFB96', // 高亮状态下柱条颜色 }, itemStyle: { color: '#296FFB96', // 高亮状态下柱条颜色 }, }, data: onLine[2], // 系列中的数据内容数组 }, { name: '条形屏', // 系列名称 type: 'bar', barWidth: 15, // 柱子宽度 xAxisIndex: 2, // 对应在X轴的grid索引 yAxisIndex: 2, // 对应在Y轴的grid索引 stack: '2', // 相同就是堆叠 label: { show: true, position: 'top', color: '#4AA5EA', fontSize: 10, }, itemStyle: { // 柱条样式。 color: '#4AA5EA', // borderWidth:1, // borderColor:'transparent' }, emphasis: { // 高亮 show: true, label: { color: '#4AA5EA96', // 高亮状态下柱条颜色 }, itemStyle: { color: '#4AA5EA96', // 高亮状态下柱条颜色 }, }, data: onLine[3], // 系列中的数据内容数组 }, // 联机背景 { name: '联机状态', // 系列名称 type: 'bar', // barGap: 5, // 柱间距离 barWidth: 21, // 柱子宽度 xAxisIndex: 2, // 对应在X轴的grid索引 yAxisIndex: 2, // 对应在Y轴的grid索引 // stack: '2', // 相同就是堆叠 barGap: '-120%', //重叠 itemStyle: { // 柱条样式。 // color: '#2087FE', color: 'transparent', borderWidth: 1, borderColor: '#2087FE', }, data: onLineSum, // 系列中的数据内容数组 }, ], };
    • 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
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
  • 相关阅读:
    【BugBounty】记一次Xss绕过
    【【萌新的SOC学习之SD卡DMA回路读写大数据的实验】】
    天选之子C++是如何发展起来的?如何学习C++呢?
    纠删码在实时视频流中的应用丨Dev for Dev 专栏
    【语音识别】基于MFCC和MEL倒频系数实现声纹识别附matlab代码
    Qt 4.8.6 的下载与安装
    【Vue】深究计算和侦听属性的原理
    java游戏制作-飞翔的鸟游戏
    Synchronized锁及其膨胀
    (附源码)ssm教学成绩管理系统 毕业设计 282029
  • 原文地址:https://blog.csdn.net/qq_14993591/article/details/133014704