简体   繁体   English

我不希望我的线条Highchart中有圆圈

[英]I don't want circles in my line Highchart

I'm new at using HighCharts in javascript. 我是javascript中使用HighCharts的新手。 I'm doing a line chart, but the chart put me some circles in the graphics by default like this: 我正在做折线图,但图表默认情况下在图形中给我一些圆圈,如下所示:

图表
(source: misoproject.com ) (来源: 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? 如何在我的图片中退出这些圈子呢?

Add this configuration option: 添加此配置选项:

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

to the root of your chart configuration. 到图表配置的根目录。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM