We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f287315 commit 969da40Copy full SHA for 969da40
highcharts_core/options/series/data/connections.py
@@ -202,6 +202,9 @@ def from_array(cls, value):
202
as_obj = cls.from_dict(item)
203
elif item is None or isinstance(item, constants.EnforcedNullType):
204
as_obj = cls()
205
+ elif len(item) == 2:
206
+ as_obj = cls(from_ = item[0],
207
+ to = item[1])
208
else:
209
raise errors.HighchartsValueError(f'each data point supplied must either '
210
f'be a Connection Data Point or be '
0 commit comments