HighCharts – 如何closures点?
我正在使用HighCharts。 这里是文档。 我想closures这些点,但起初我不知道那是怎么回事。 所以我不能把它们关掉。 你知道我怎么能够杀死这些点?
下面是一个折线图的例子: http : //jsfiddle.net/aeZ6P/1/
重要部分:
plotOptions: { line: { marker: { enabled: false } } }
另见: http : //api.highcharts.com/highcharts#plotOptions.line
与样条相同的效果: http : //jsfiddle.net/aeZ6P/
在Highcharts中,我们有三种禁用标记的方法:
1)按types禁用所有系列:
plotOptions: { line: { /* or spline, area, series, areaspline etc.*/ marker: { enabled: false } } }
2)禁用一个特定的系列:
series: [{ data: [14,17,21], marker: { enabled: false } }]
3)禁用某个点的标记:
series: [{ data: [{ y: 14, marker: { enabled: false } },{ y: 17 },{ y: 21 }] }]
从HighCharts API参考看看这个:
http://api.highcharts.com/highcharts#plotOptions.series.marker.enabled
你需要添加的选项是这样的:
plotOptions: { series: { marker: { enabled: false } } },
这个方法很好,因为它可以用点标记来处理所有的图表。 如果你想要一个特定的图表types,请检查:
plotOptions: { line: { // <--- Chart type here, check the API reference first! marker: { enabled: false } } },
请享用!