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 21dd136 commit 620c468Copy full SHA for 620c468
highcharts_core/utility_classes/data_labels.py
@@ -561,8 +561,8 @@ def overflow(self, value):
561
self._overflow = None
562
else:
563
value = value.lower()
564
- if value not in ['justify', 'none']:
565
- raise errors.HighchartsValueError(f'overflow accepts "justify" or "none".'
+ if value not in ['justify', 'allow', 'none']:
+ raise errors.HighchartsValueError(f'overflow accepts "justify", "allow", or "none".'
566
f' Was: {value}')
567
self._overflow = value
568
0 commit comments