平滑折线图
平滑折线图也是基本折线图的一种变体。对于您来说,它是在视觉体验上更舒适的选择。使用 ECharts 时,您只需要将 smooth
设置为 true
即可实现此效果。
option = { xAxis: { data: ['A', 'B', 'C', 'D', 'E'] }, yAxis: {}, series: [ { data: [10, 22, 28, 23, 19], type: 'line', smooth: true } ] };
在线示例
平滑折线图也是基本折线图的一种变体。对于您来说,它是在视觉体验上更舒适的选择。使用 ECharts 时,您只需要将 smooth
设置为 true
即可实现此效果。
option = { xAxis: { data: ['A', 'B', 'C', 'D', 'E'] }, yAxis: {}, series: [ { data: [10, 22, 28, 23, 19], type: 'line', smooth: true } ] };