禁用 extJs 图表中特定系列的图例

Disable the legends of a specific series in extJs chart

我在一个图表中有多个系列,但我不想为图表显示所有这些图例。如何禁用特定系列的图例。在 extJS 中有什么方法可以做到这一点吗?

series({
    axis: "left",
    type: "corescatter-series",
    xField: "AVG_ACTIVE_USERS",
    yField: "AVG_LOAD_AVG",
    totalKey: undefined
},{
    type: "coreline",
    axis: "left",
    xField: "AVG_ACTIVE_USERS",
    yField: "AVG_USAGE"
})

这里我要禁用coreline系列的传说

Series 有 属性 showInLegend。您可以将其设置为 false 以隐藏来自 legend

的系列