Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I don't want circles in my line Highchart

I'm new at using HighCharts in javascript. I'm doing a line chart, but the chart put me some circles in the graphics by default like this:

chart
(source: misoproject.com)

But i don't want that, i want to quit those circles. What can i do to quit those circles in my graphic?

like image 962
GalloPinto Avatar asked Aug 14 '12 15:08

GalloPinto


1 Answers

Add this configuration option:

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

to the root of your chart configuration.

like image 65
Tomasz Nurkiewicz Avatar answered Oct 12 '22 13:10

Tomasz Nurkiewicz