亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決echarts中多個折現數據出現坐標和值對不上的問題

發布時間:2021-07-21 11:10:38 來源:億速云 閱讀:369 作者:小新 欄目:web開發

小編給大家分享一下如何解決echarts中多個折現數據出現坐標和值對不上的問題,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

當出現多個折現數據,echarts可以配置stack值使用堆積值還是單個值

如何解決echarts中多個折現數據出現坐標和值對不上的問題

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'}}}
     },
   ]

去掉stack值后

如何解決echarts中多個折現數據出現坐標和值對不上的問題

 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中多個折現數據出現坐標和值對不上的問題”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

太谷县| 陆良县| 治多县| 望谟县| 宝清县| 搜索| 肥乡县| 永靖县| 波密县| 鹤峰县| 隆化县| 秭归县| 偏关县| 阜阳市| 贞丰县| 永嘉县| 丹寨县| 高台县| 唐海县| 正阳县| 松滋市| 虞城县| 晋宁县| 改则县| 平凉市| 噶尔县| 安乡县| 东明县| 长乐市| 克什克腾旗| 佛冈县| 文水县| 鲁甸县| 克山县| 刚察县| 竹溪县| 曲阳县| 海阳市| 旬邑县| 喀喇沁旗| 察雅县|