我试图在区域样条线图表的顶部显示标记。但是标记未与图表线连接并移开。当图表线停止时,它与标记连接。
I want marker connected with graph line.
答案 0 :(得分:1)
您需要禁用点更新动画:
series.data[series.data.length - 1].update({
marker: {
enabled: true
}
}, true, false)
实时演示: http://jsfiddle.net/BlackLabel/5nm6y01q/
API参考: https://api.highcharts.com/class-reference/Highcharts.Point#update