折线图:
showSymbol: false, // 设置折线圆点
smooth: 0.5, // 设置折线弧度
lineStyle: {color: '#EBD01C' // 线条颜色}
splitLine: {show: false //去掉折线图中的横线}
yAxis: {
type: 'value',
splitLine: {
show: false //去掉折线图中的横线
}
},
series: [{
name: '一',
type: 'line',
data: [1, 0, 0, 3, 2, 0, 2, 2, 3],
showSymbol: false, // 设置折线圆点
smooth: 0.5, // 设置折线弧度
itemStyle: {
normal: {
color: '#EBD01C',
lineStyle: {
color: '#EBD01C' // 线条颜色
}
}
},
},