高图表从折线图中删除点

时间:2013-04-12 11:44:38

标签: api graph highcharts

我使用高级图表绘制折线图。我无法在API中找到任何东西来删除线上的点。如果您知道要更改哪些设置以删除点,请分享。

http://gyazo.com/ba33b6a6cc1a3898fee00b737111da4c

2 个答案:

答案 0 :(得分:22)

我认为您需要编辑的位是标记:

http://api.highcharts.com/highcharts/plotOptions.line.marker.enabled

您应该可以将其设置为false并隐藏点。

答案 1 :(得分:15)

您只需要禁用标记,这将在此处演示: http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-enabled/

chart.plotOptions.line.marker.enabled = false
相关问题