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 b04b860 commit 9b01533Copy full SHA for 9b01533
highcharts_maps/options/axes/parallel_axes.py
@@ -1,3 +1,4 @@
1
+from typing import Optional
2
from highcharts_maps.options.axes.y_axis import YAxis
3
4
@@ -9,4 +10,11 @@ class ParallelAxesOptions(YAxis):
9
10
This feature requires ``modules/parallel-coordinates.js``.
11
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