echarts 折线图线变虚线
时间: 2023-11-03 22:02:31 浏览: 124
echarts 双折线图 实现 与虚线
要将echarts折线图线变为虚线,可以使用series中的lineStyle属性,将type设置为'dotted'或'dashed'。例如:
series: [{
data: [20, 30, 40, 50, 60, 70, 80],
type: 'line',
lineStyle: {
type: 'dotted' // 或者 'dashed'
}
}]
阅读全文