ECharts将折线变平滑和去掉点的属性(转载)曲线变圆滑
时间:2019-11-21 16:44:15
收藏:0
阅读:304
series : [
{
name:‘your name‘,
symbol:‘none‘, //这句就是去掉点的
smooth:true, //这句就是让曲线变平滑的
type:‘line‘,
stack: ‘总量‘,
data:[0, 0, 0, 0, 0, 0, 0]
},
]
原文:https://www.cnblogs.com/hao-1234-1234/p/11905680.html
评论(0)