Skip to content

Commit 03c9529

Browse files
committed
Added .inactive_other_points support to SeriesOptions-based series
1 parent bef32e5 commit 03c9529

File tree

7 files changed

+9
-0
lines changed

7 files changed

+9
-0
lines changed

highcharts_maps/options/plot_options/heatmap.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ def _get_kwargs_from_dict(cls, as_dict):
138138
'drag_drop': as_dict.get('dragDrop', None),
139139
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
140140
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
141+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
141142
'linecap': as_dict.get('linecap', None),
142143
'line_width': as_dict.get('lineWidth', None),
143144
'negative_color': as_dict.get('negativeColor', None),
@@ -321,6 +322,7 @@ def _get_kwargs_from_dict(cls, as_dict):
321322
'drag_drop': as_dict.get('dragDrop', None),
322323
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
323324
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
325+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
324326
'linecap': as_dict.get('linecap', None),
325327
'line_width': as_dict.get('lineWidth', None),
326328
'negative_color': as_dict.get('negativeColor', None),

highcharts_maps/options/plot_options/mapbubble.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ def _get_kwargs_from_dict(cls, as_dict):
148148
'drag_drop': as_dict.get('dragDrop', None),
149149
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
150150
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
151+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
151152
'linecap': as_dict.get('linecap', None),
152153
'line_width': as_dict.get('lineWidth', None),
153154
'negative_color': as_dict.get('negativeColor', None),

highcharts_maps/options/plot_options/series.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ def _get_kwargs_from_dict(cls, as_dict):
120120
'data_sorting': as_dict.get('dataSorting', None),
121121
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
122122
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
123+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
123124
'linecap': as_dict.get('linecap', None),
124125
'line_width': as_dict.get('lineWidth', None),
125126
'relative_x_value': as_dict.get('relativeXValue', None),

highcharts_maps/options/series/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ def _get_kwargs_from_dict(cls, as_dict):
296296
'drag_drop': as_dict.get('dragDrop', None),
297297
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
298298
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
299+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
299300
'linecap': as_dict.get('linecap', None),
300301
'line_width': as_dict.get('lineWidth', None),
301302
'negative_color': as_dict.get('negativeColor', None),

highcharts_maps/options/series/heatmap.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ def _get_kwargs_from_dict(cls, as_dict):
158158
'drag_drop': as_dict.get('dragDrop', None),
159159
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
160160
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
161+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
161162
'linecap': as_dict.get('linecap', None),
162163
'line_width': as_dict.get('lineWidth', None),
163164
'negative_color': as_dict.get('negativeColor', None),
@@ -309,6 +310,7 @@ def _get_kwargs_from_dict(cls, as_dict):
309310
'drag_drop': as_dict.get('dragDrop', None),
310311
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
311312
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
313+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
312314
'linecap': as_dict.get('linecap', None),
313315
'line_width': as_dict.get('lineWidth', None),
314316
'negative_color': as_dict.get('negativeColor', None),

highcharts_maps/options/series/mapbubble.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ def _get_kwargs_from_dict(cls, as_dict):
139139
'drag_drop': as_dict.get('dragDrop', None),
140140
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
141141
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
142+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
142143
'linecap': as_dict.get('linecap', None),
143144
'line_width': as_dict.get('lineWidth', None),
144145
'negative_color': as_dict.get('negativeColor', None),

highcharts_maps/options/series/pie.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ def _get_kwargs_from_dict(cls, as_dict):
140140
'drag_drop': as_dict.get('dragDrop', None),
141141
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
142142
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
143+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
143144
'linecap': as_dict.get('linecap', None),
144145
'line_width': as_dict.get('lineWidth', None),
145146
'negative_color': as_dict.get('negativeColor', None),

0 commit comments

Comments
 (0)