HighCharts - 如何关闭积分?

时间:2013-02-01 09:04:17

标签: javascript highcharts

我正在使用HighCharts。 Here是文档。我想关掉那些点,但起初我不知道这是怎么回事。所以我不能把它们关掉。你知道我怎么能杀死那些积分吗?

I would like to turn of those points

3 个答案:

答案 0 :(得分:127)

以下是折线图示例:http://jsfiddle.net/aeZ6P/1/

重要部分:

plotOptions: {
    line: {
        marker: {
            enabled: false
        }
    }
}

另请参阅:https://api.highcharts.com/highcharts/plotOptions.line.marker.enabled

与样条曲线相同的效果:http://jsfiddle.net/aeZ6P/

答案 1 :(得分:77)

在Highcharts中,我们有三种方法可以禁用标记:

1)按类型禁用所有系列:

plotOptions: {
    line: { /* or spline, area, series, areaspline etc.*/
        marker: {
           enabled: false
        }
    }
}

2)禁用一个特定系列:

series: [{
    data: [14,17,21],
    marker: {
       enabled: false
    }
}]

3)禁用某个点的标记:

series: [{
    data: [{
        y: 14,
        marker: {
            enabled: false
        }
    },{
        y: 17
    },{
        y: 21
    }]
}]

答案 2 :(得分:11)

从HighCharts API参考中查看此内容:

http://api.highcharts.com/highcharts#plotOptions.series.marker.enabled

http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-enabled/

您需要添加的选项是:

    plotOptions: {
        series: {
            marker: {
                enabled: false
            }
        }
    },

这种方法很不错,因为它适用于带有点标记的所有图表。如果您想要特定的图表类型,请查看:

    plotOptions: {
        line: { // <--- Chart type here, check the API reference first!
            marker: {
                enabled: false
            }
        }
    },

享受!