我正在使用HighCharts。这是文档。我想关闭这些观点,但起初我不知道该如何称呼。因此,我无法关闭它们。你知道我怎么能杀死那些点吗?
Answers:
这是带有折线图的示例:http : //jsfiddle.net/aeZ6P/1/
重要部分:
plotOptions: {
line: {
marker: {
enabled: false
}
}
}
另请参阅:https : //api.highcharts.com/highcharts/plotOptions.line.marker.enabled
与样条线相同的效果:http : //jsfiddle.net/aeZ6P/
states: { hover: { enabled: false } }
在Highcharts中,我们提供了三种禁用标记的方法:
1)按类型对所有系列禁用:
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
}]
}]
states.hover
。
plotOptions.series.states.hover
作品。我很高兴看到这篇文章。
从HighCharts API参考中了解一下:
http://api.highcharts.com/highcharts#plotOptions.series.marker.enabled
您需要添加的选项如下:
plotOptions: {
series: {
marker: {
enabled: false
}
}
},
这种方法很好,因为它将与所有带有点标记的图表一起使用。如果需要特定的图表类型,请检查以下内容:
plotOptions: {
line: { // <--- Chart type here, check the API reference first!
marker: {
enabled: false
}
}
},
请享用!