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.
Asked
Active
Viewed 4.4k times
2 Answers
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
-
I'm glad it worked. Consider up-voting answers you find helpful and correct. – John Zwinck Apr 12 '13 at 12:03
-
3I cant up vote yet, need 15 points at least. :( – Atif Apr 12 '13 at 14:04