echarts笔记

来源:互联网 发布:大数据分析好找工作吗 编辑:程序博客网 时间:2024/06/07 06:22
**********去掉折线图小圆点****************
yAxis 里 series 设置 symbol:'none'
*********设置单位***********************
yAxis里加 axisLabel : {
                formatter: '{value} °C'
            }
********设置虚线***********************
lineStyle里设置  type:'dotted' 或type:'dashed'
********设置平滑曲线********************
series 里面设置 smooth:'true'
*******网格线************************
axis下splitLine:{show:false}
*******横坐标显示数据********************
xAxis下
axisLabel:{
rotate:90,//旋转角度
textStyle:{
fontSize:8
            }
0 0