ECharts将折线变平滑和去掉点的属性(转载)曲线变圆滑

 

本文链接:https://blog.csdn.net/sinat_36422236/article/details/62430114
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