You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create a line chart where no lines are actually drawn between markers. It is important that I use a line chart to take advantage of splitting the tooltip. I want to modify the the "states" parameter of all lines in my plot so that lines are not drawn between markers on hover.
From the Highcharts API Reference, it would seem that I could just add 'states': {'hover': 'lineWidthPlus': 0}} to my chart-options-dictionary (see code below); but this does not appear to be acceptable.
I am able to pass 'states': {'hover': {'enabled': False}} from python and have the chart behave properly, but for some reason lineWidthPlus doesn't even render in the javascript returned from my_chart.to_js_literal() after creating my_chart from the options dictionary.
I suspect that there is some bug in the HighchartsOptions.from_dict() method that prevents this particular argument from being inserted into the chart-options.
Describe the bug
I am trying to create a line chart where no lines are actually drawn between markers. It is important that I use a line chart to take advantage of splitting the tooltip. I want to modify the the "states" parameter of all lines in my plot so that lines are not drawn between markers on hover.
From the Highcharts API Reference, it would seem that I could just add
'states': {'hover': 'lineWidthPlus': 0}}
to my chart-options-dictionary (see code below); but this does not appear to be acceptable.I am able to pass
'states': {'hover': {'enabled': False}}
from python and have the chart behave properly, but for some reasonlineWidthPlus
doesn't even render in the javascript returned from my_chart.to_js_literal() after creating my_chart from the options dictionary.I suspect that there is some bug in the HighchartsOptions.from_dict() method that prevents this particular argument from being inserted into the chart-options.
To Reproduce
The text was updated successfully, but these errors were encountered: