我想在线上显示没有标记的样条图。这个完成了。But now, When a point is selected, the marker doesn't appear.
我发现了一个小技巧来做我想做的事。在 plotOptions 中,radius 设置为 0.1 以被线宽隐藏。
plotOptions: {
series: {
allowPointSelect: true,
marker: {
radius: 0.1, // hack to show selected point
states: {
hover: {
radius: 5
},
select: {
radius: 5
}
}
}
}
}
}
完整代码在这里:http: //jsfiddle.net/ManUtopiaK/7GXeT/
这是一个 HighCharts 错误还是我在图形选项中犯了一个错误?