88from highcharts_core import constants , errors
99from highcharts_core .decorators import class_sensitive
1010from highcharts_core .options .series .data .base import DataBase
11- from highcharts_core .options .series .data .cartesian import CartesianData , CartesianDataCollection
11+ from highcharts_core .options .series .data .collections import DataPointCollection
1212from highcharts_core .options .plot_options .drag_drop import DragDropOptions
1313from highcharts_core .utility_classes .data_labels import DataLabel
1414from highcharts_core .utility_classes .markers import Marker
@@ -362,7 +362,7 @@ def _to_untrimmed_dict(self, in_cls = None) -> dict:
362362 return untrimmed
363363
364364
365- class RangeDataCollection (CartesianDataCollection ):
365+ class RangeDataCollection (DataPointCollection ):
366366 """A collection of :class:`RangeData` objects.
367367
368368 .. note::
@@ -384,8 +384,8 @@ def _get_data_point_class(cls):
384384 return RangeData
385385
386386
387- class ConnectedRangeData (CartesianData ):
388- """Variant of :class:`CartesianData ` which extends the class with connector
387+ class ConnectedRangeData (RangeData ):
388+ """Variant of :class:`RangeData ` which extends the class with connector
389389 attributes."""
390390
391391 def __init__ (self , ** kwargs ):
@@ -481,9 +481,10 @@ class from a Highcharts Javascript-compatible :class:`dict <python:dict>` object
481481 'data_labels' : as_dict .get ('dataLabels' , None ),
482482 'drag_drop' : as_dict .get ('dragDrop' , None ),
483483 'drilldown' : as_dict .get ('drilldown' , None ),
484+ 'high' : as_dict .get ('high' , None ),
485+ 'low' : as_dict .get ('low' , None ),
484486 'marker' : as_dict .get ('marker' , None ),
485487 'x' : as_dict .get ('x' , None ),
486- 'y' : as_dict .get ('y' , None ),
487488
488489 'connector_color' : as_dict .get ('connectorColor' , None ),
489490 'connector_width' : as_dict .get ('connectorWidth' , None ),
@@ -506,7 +507,7 @@ def _to_untrimmed_dict(self, in_cls = None) -> dict:
506507 return untrimmed
507508
508509
509- class ConnectedRangeDataCollection (CartesianDataCollection ):
510+ class ConnectedRangeDataCollection (RangeDataCollection ):
510511 """A collection of :class:`ConnectedRangeData` objects.
511512
512513 .. note::
0 commit comments