登录
首页 >  数据库 >  MySQL

解决echarts的多个折现数据出现坐标和值对不上的问题

来源:SegmentFault

时间:2023-01-25 16:48:21 265浏览 收藏

本篇文章向大家介绍《解决echarts的多个折现数据出现坐标和值对不上的问题》,主要包括MySQL、nginx、github、spring、javascript,具有一定的参考价值,需要的朋友可以参考一下。

当出现多个折现数据,echarts可以配置stack值使用堆积值还是单个值

option = {
    noDataLoadingOption: {
     text: '暂无数据',
     effect: 'bubble',
     effectOption: {effect: {n: 0}}, textStyle: {fontSize: 24}
    },
    symbolList: ['circle'],
    tooltip: {
     trigger: 'axis', textStyle: {align: 'left'},
     axisPointer: {lineStyle: {color: '#E3E3E3', width: 1, type: 'solid'},}
    },
    // grid: {x: '60px', x2: '60px', borderWidth: 0},
    legend: {data: ['最大响应时长', '平均响应时长', '最小响应时长']},
    toolbox: {show: true},
    // calculable: true,
    xAxis: [{
      type: 'category',
      boundaryGap: false,
      data: ['00:00-02:00', '02:00-04:00', '04:00-06:00', '06:00-08:00', '08:00-10:00', '10:00-12:00'],
      splitLine: {lineStyle: {width: 0}},
      axisLabel: {interval: 0,/*横轴信息全部显示*/  rotate: 20,/*20度角倾斜显示*/}
     }],
    yAxis: [{
      type: 'value',
      axisLine: {lineStyle: {color: '#333', width: 0, type: 'solid'}},
      splitLine: {lineStyle: {color: '#e3e3e3', width: 1, type: 'dashed'}},
     }],
    series: [
     {
      name: '最大响应时长',
      smooth: true,
      type: 'line',
      stack: '总量', // 重要的点 这个参数会使用堆积值作为纵坐标的刻量值。
      data:[........],
      itemStyle: {normal: {color: '#D06E17', lineStyle: {width: 1, color: '#D06E17'}}}
     },{
      name: '平均响应时长',
      smooth: true,
      type: 'line',
      stack: '总量', // 重要的点 这个参数会使用堆积值作为纵坐标的刻量值。
      data:[........],
      itemStyle: {normal: {color: '#C35AD9', lineStyle: {width: 1, color: '#C35AD9'}}}
     },{
      name: '最小响应时长',
      smooth: true,
      type: 'line',
      stack: '总量', // 重要的点 这个参数会使用堆积值作为纵坐标的刻量值。
      data:[........],
      itemStyle: {normal: {color: '#1FD5CE', lineStyle: {width: 1, color: '#1FD5CE'}}}
     },
   ]

option3 = {
   noDataLoadingOption: {
    text: '暂无数据',
    effect: 'bubble',
    effectOption: {effect: {n: 0}}, textStyle: {fontSize: 24}
   },
   symbolList: ['circle'],
   tooltip: {
    trigger: 'axis', textStyle: {align: 'left'},
    axisPointer: {lineStyle: {color: '#E3E3E3', width: 1, type: 'solid'},}
   },
   // grid: {x: '60px', x2: '60px', borderWidth: 0},
   legend: {data: ['最大响应时长', '平均响应时长', '最小响应时长']},
   toolbox: {show: true},
   // calculable: true,
   xAxis: [{
     type: 'category',
     boundaryGap: false,
     data: ['00:00-02:00', '02:00-04:00', '04:00-06:00', '06:00-08:00', '08:00-10:00', '10:00-12:00'],
     splitLine: {lineStyle: {width: 0}},
     axisLabel: {interval: 0,/*横轴信息全部显示*/  rotate: 20,/*20度角倾斜显示*/}
    }],
   yAxis: [{
     type: 'value',
     axisLine: {lineStyle: {color: '#333', width: 0, type: 'solid'}},
     splitLine: {lineStyle: {color: '#e3e3e3', width: 1, type: 'dashed'}},
    }],
   series: [
    {
     name: '最大响应时长',
     smooth: true,
     type: 'line',
     // stack: '总量', // 去除stack这个参数
     itemStyle: {normal: {color: '#D06E17', lineStyle: {width: 1, color: '#D06E17'}}}
    },{
     name: '平均响应时长',
     smooth: true,
     type: 'line',
     // stack: '总量', // 去除stack这个参数
     itemStyle: {normal: {color: '#C35AD9', lineStyle: {width: 1, color: '#C35AD9'}}}
    },{
     name: '最小响应时长',
     smooth: true,
     type: 'line',
     // stack: '总量', // 去除stack这个参数
     itemStyle: {normal: {color: '#1FD5CE', lineStyle: {width: 1, color: '#1FD5CE'}}}
    },
  ]
};

终于介绍完啦!小伙伴们,这篇关于《解决echarts的多个折现数据出现坐标和值对不上的问题》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布数据库相关知识,快来关注吧!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表