Commit 8dcb0a29 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Pamhyr2: View: Tools: Add comment.

No related merge requests found
Pipeline #55029 passed with stages
in 3 minutes and 24 seconds
Showing with 9 additions and 7 deletions
+9 -7
......@@ -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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment