我在热图图表上使用散点系列。散点系列用于在热图上的气泡之间显示箭头。为了绘制箭头,我使用了以下系列配置:
{
type: 'scatter',
enableMouseTracking: false,
lineWidth: 1.5,
lineColor: 'rgba(117,117,117,1)',
dashStyle: 'dash',
marker: {
enabled: false
},
data: [[startBubble.x,startBubble.y],[targetBubble.x,targetBubble.y]],
endMarker: 'url(#arrow)',
dataLabels: {
enabled: false
}
}
如您所见,我使用endMarker属性来绘制箭头。
我最近将Highcharts版本从6.2.0更新到9.2.2。在主要版本8之前的版本中,这个endMarker属性非常适合我的目的。从版本9开始,它似乎不再起作用了。没有箭头了。
我是否遗漏了更新说明中的API更改,或者此功能不再受支持?
1条答案
按热度按时间7hiiyaii1#
请尝试使用
series.marker.symbol
,而不要使用markerEnd
。应用编程接口:https://api.highcharts.com/highcharts/series.scatter.marker.symbol