Reputation: 677
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:
(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
Reputation: 340708
Add this configuration option:
plotOptions: {
series: {
marker: {
enabled: false
}
}
}
to the root of your chart configuration.
Upvotes: 5