平滑折线图
平滑折线图也是基础折线图的一种变体。它更适合你执行舒适的视觉体验。在使用 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 } ] };