I want to change the dashStyle
for a plot line when user hovers overs it.
JSfiddle - https://jsfiddle.net/sharadkalya/5z1w06pL/17/
What I've tried is as follows:
plotOptions: {
series: {
states: {
hover: {
enabled: true,
lineWidth: 5,
line: {
dashStyle: "dash"
},
dashStyle: "dash",
}
}
},
},
With this lineWidth
is changing, but the dashStyle
is not changing for the plotline.