Describe the bug
As per documentation, DumbbellSeries doesn't accept data points with 3 dimensions.
I'm trying to reproduce the "Change in Card Usage" plot on this page https://www.highcharts.com/docs/chart-and-series-types/dumbbell-series using the Python package, and it's not possible when following the documentation.
To Reproduce
This minimal code, copied from the documentation, triggers the error
from highcharts_core.options.series.dumbbell import DumbbellSeries
s = DumbbellSeries()
s.data = [[0, 1, 2], [1, 3, 4]]
Generates an error, as below
HighchartsValueError: data expects either a 1D or 2D collection. Collection received had 3 dimensions.
The same happens when trying to use a category X-axis
Describe the bug As per documentation, DumbbellSeries doesn't accept data points with 3 dimensions. I'm trying to reproduce the "Change in Card Usage" plot on this page https://www.highcharts.com/docs/chart-and-series-types/dumbbell-series using the Python package, and it's not possible when following the documentation.
To Reproduce
This minimal code, copied from the documentation, triggers the error
Generates an error, as below
The same happens when trying to use a category X-axis
Expected behavior For DumbbellSeries to behave as explained in the documentation.
Your Environment: