28

I am using High charts to draw a line graph. I cant find any thing in the API to remove the dots from the line. Please share if you know which bit of settings to change to remove the dots.

http://gyazo.com/ba33b6a6cc1a3898fee00b737111da4c

Atif
  • 821
  • 2
  • 10
  • 15

2 Answers2

30

I think the bit you need to edit is the marker:

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

You should be able to set that to false and that'll hide the dots.

james_tookey
  • 885
  • 6
  • 12
21

You just have to disable the markers, which is demonstrated here: 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
John Zwinck
  • 239,568
  • 38
  • 324
  • 436