如何在 Echarts 中的系列线的 markLine 中隐藏标签?或者如何更改标签样式?
我试过了label: false
,不工作。
series: [
markLine: {
silent: true,
symbol: false,
label: false,
data: [{
yAxis: 100
}, {
yAxis: 400
}],
lineStyle: {
normal: {
type: "solid",
color: "red"
}
}
}
]