GalloPinto
GalloPinto

Reputation: 677

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?

Upvotes: 6

Views: 1301

Answers (1)

Tomasz Nurkiewicz
Tomasz Nurkiewicz

Reputation: 340708

Add this configuration option:

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

to the root of your chart configuration.

Upvotes: 5

Related Questions