I'm using HighCharts. Here is the documentation. I would like to turn off those points but at first I do not know how is that called. Therefore I can not turn them off. Do you know how am I able to kill those points?
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- void before promise syntax
- Keeping track of variable instances
- Can php detect if javascript is on or not?
Take a look at this from the HighCharts API reference:
http://api.highcharts.com/highcharts#plotOptions.series.marker.enabled
http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-enabled/
The options you need to add are this:
This method is nice as it will work with all charts with the point markers. If you want a specific chart type, check this out:
Enjoy!
In Highcharts we have three ways to disable markers:
1) Disable for all series by type:
2) Disable for one specific series:
3) Disable marker for a certain point:
Here's an example with a line chart: http://jsfiddle.net/aeZ6P/1/
Important part:
See also: https://api.highcharts.com/highcharts/plotOptions.line.marker.enabled
Same effect with spline: http://jsfiddle.net/aeZ6P/