6

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?

4

1 回答 1

4

添加此配置选项:

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

到图表配置的根目录。

于 2012-08-14T16:00:09.510 回答