当用户将鼠标悬停在绘图线上时,我想更改其dashStyle
。
JSfiddle - https://jsfiddle.net/sharadkalya/5z1w06pL/17/
我尝试的方法如下:
plotOptions: {
series: {
states: {
hover: {
enabled: true,
lineWidth: 5,
line: {
dashStyle: "dash"
},
dashStyle: "dash",
}
}
},
},
字符串
这样lineWidth
会发生变化,但dashStyle
不会发生变化。
1条答案
按热度按时间uttx8gqw1#
plotOptions.series.states.hover
中没有line
和dashStyle
这样的选项。你必须在plotOptions.series.point.events.mouseOver
和plotOptions.series.point.events.mouseOut
上写回调。请参见以下示例。个字符