2

如何在 Echarts 中的系列线的 markLine 中隐藏标签?或者如何更改标签样式?

我试过了label: false,不工作。

series: [
    markLine: {
        silent: true,
        symbol: false,
        label: false,
        data: [{
            yAxis: 100
        }, {
            yAxis: 400
        }],
        lineStyle: {
            normal: {
                type: "solid",
                color: "red"
            }
        }
    }
]
4

1 回答 1

6

它应该是:

series: [
    markLine: {
        label: {
            normal: {
                show: false
            }
        }
    }
]

normal是没有鼠标悬停触摸时的样式。否则,它将是emphasis

请参阅文档

于 2016-08-31T02:31:07.727 回答