diff --git a/src/View/Tools/PamhyrPlot.py b/src/View/Tools/PamhyrPlot.py index 309c4b7b1b37581656d4024a195d77315396c415..b934a3ac1fd4d774d578aad22d165f6650f7644e 100644 --- a/src/View/Tools/PamhyrPlot.py +++ b/src/View/Tools/PamhyrPlot.py @@ -70,17 +70,17 @@ class PamhyrPlot(APlot): self._label_x = "X" self._label_y = "Y" - self._isometric_axis = True + self._isometric_axis = True #: Use isometric view - self._auto_relim = True - self._autoscale = True + self._auto_relim = True #: Auto relim axes at plot creation + self._autoscale = True #: Auto scale at plot creation - self._auto_relim_update = False - self._autoscale_update = False + self._auto_relim_update = False #: Auto relim axes at plot update + self._autoscale_update = False #: Auto scale at plot creation - self._highlight_data = None + self._highlight_data = None #: Data identifier to highlight (free type) self._highlight_data_update = False - self._current_data = None + self._current_data = None #: Current data identifier (free type) self._current_data_update = False super(PamhyrPlot, self).__init__(data=data) @@ -99,6 +99,7 @@ class PamhyrPlot(APlot): @property def label_x(self): + """Plot X axes label""" return self._label_x @label_x.setter @@ -107,6 +108,7 @@ class PamhyrPlot(APlot): @property def label_y(self): + """Plot Y axes label""" return self._label_x @label_y.setter