Skip to content

Commit 9b01533

Browse files
committed
Added custom dot-path.
1 parent b04b860 commit 9b01533

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

highcharts_maps/options/axes/parallel_axes.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from typing import Optional
12
from highcharts_maps.options.axes.y_axis import YAxis
23

34

@@ -9,4 +10,11 @@ class ParallelAxesOptions(YAxis):
910
This feature requires ``modules/parallel-coordinates.js``.
1011
1112
"""
12-
pass
13+
14+
@property
15+
def _dot_path(self) -> Optional[str]:
16+
"""The dot-notation path to the options key for the current class.
17+
18+
:rtype: :class:`str <python:str>` or :obj:`None <python:None>`
19+
"""
20+
return 'chart.parallelAxes'

0 commit comments

Comments
 (0)