如何从highcharts中删除“值”和“系列”?

时间:2016-02-21 21:35:20

标签: javascript html highcharts

我在我的网站上使用高图,看起来不错,但我现在想从图表中删除这两个标签: enter image description here

我尝试禁用各种标签,例如:

{
    title: {
        text: 'X axis labels are disabled'
    },
    xAxis: {
        labels: {
            enabled: false
        }
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]
}

但我无法找到一种方法来删除这些。

Here is the fiddle上图。

有人知道如何删除这些标签吗?

1 个答案:

答案 0 :(得分:13)

“值”是title of the y-axis。可以像这样禁用它:

yAxis: {
    title: {
        text: null
    }
}

yAxis: {
    title: false
}

“系列1”是legend的一部分。可以像这样禁用它:

legend: {
    enabled: false
}

或者禁用特定系列在图例中显示,如下所示:

series: [{
    showInLegend: false,
    data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5]
}]

请参阅this updated JSFiddle进行现场演示。