Skip to content

Commit 55f005a

Browse files
committed
Added .inactive_other_points support to SeriesOptions-based series.
1 parent e159ffe commit 55f005a

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

highcharts_gantt/options/plot_options/bar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def _get_kwargs_from_dict(cls, as_dict):
8989
'drag_drop': as_dict.get('dragDrop', None),
9090
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
9191
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
92+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
9293
'linecap': as_dict.get('linecap', None),
9394
'line_width': as_dict.get('lineWidth', None),
9495
'negative_color': as_dict.get('negativeColor', None),

highcharts_gantt/options/plot_options/series.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ def _get_kwargs_from_dict(cls, as_dict):
290290
'data_sorting': as_dict.get('dataSorting', None),
291291
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
292292
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
293+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
293294
'linecap': as_dict.get('linecap', None),
294295
'line_width': as_dict.get('lineWidth', None),
295296
'relative_x_value': as_dict.get('relativeXValue', None),

highcharts_gantt/options/series/bar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def _get_kwargs_from_dict(cls, as_dict):
117117
'fill_opacity': as_dict.get('fillOpacity', None),
118118
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
119119
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
120+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
120121
'linecap': as_dict.get('linecap', None),
121122
'line_color': as_dict.get('lineColor', None),
122123
'line_width': as_dict.get('lineWidth', None),

highcharts_gantt/options/series/gantt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ def _get_kwargs_from_dict(cls, as_dict):
113113
'fill_opacity': as_dict.get('fillOpacity', None),
114114
'find_nearest_point_by': as_dict.get('findNearestPointBy', None),
115115
'get_extremes_from_all': as_dict.get('getExtremesFromAll', None),
116+
'inactive_other_points': as_dict.get('inactiveOtherPoints', None),
116117
'linecap': as_dict.get('linecap', None),
117118
'line_color': as_dict.get('lineColor', None),
118119
'line_width': as_dict.get('lineWidth', None),

0 commit comments

Comments
 (0)