]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Modification of some docstrings
authorjh777916 <juba.hamma@cea.fr>
Tue, 10 Oct 2023 08:20:47 +0000 (10:20 +0200)
committerjh777916 <juba.hamma@cea.fr>
Tue, 10 Oct 2023 08:20:47 +0000 (10:20 +0200)
tools/CurvePlot/src/python/controller/PlotController.py

index f56fe61f1e4e38f56a6ffab29a9ad7bc7ac43291..c2a619fd7142b924eafdef33097e17d8f473a477 100644 (file)
@@ -193,8 +193,17 @@ class PlotController(object):
 
   @classmethod
   def AddBarPlot(cls, x_ticks, height, curve_label="", x_label="", y_label="", append=True):
-    """ Testing some stuff with BarPlot"""
-
+    """ Add a new barplot and make the plot set where it is drawn the active one.
+        If no plot set exists, or none is active, a new plot set will be created, even if append is True.
+        @param x_ticks array of ticks along the X axis
+        @param height  array of value representing the data ( size(height) = size(x_ticks)-1 )
+        @param curve_label label of the curve being ploted (optional, default to empty string). This is what is
+        shown in the legend.
+        @param x_label label for the X axis
+        @param y_label label for the Y axis
+        @param append whether to add the curve to the active plot set (default) or into a new one.
+        @return the id of the created curve, and the id of the corresponding plot set.
+    """
     from .XYView import XYView
     control = cls.GetInstance()
     pm = control._plotManager
@@ -222,7 +231,17 @@ class PlotController(object):
 
   @classmethod
   def AddStemPlot(cls, x, y, curve_label="", x_label="", y_label="", append=True):
-    """ Testing some stuff with StemPlot"""
+    """ Add a new stemplot and make the plot set where it is drawn the active one.
+        If no plot set exists, or none is active, a new plot set will be created, even if append is True.
+        @param x x data
+        @param y y data
+        @param curve_label label of the curve being ploted (optional, default to empty string). This is what is
+        shown in the legend.
+        @param x_label label for the X axis
+        @param y_label label for the Y axis
+        @param append whether to add the curve to the active plot set (default) or into a new one.
+        @return the id of the created curve, and the id of the corresponding plot set.
+    """
 
     from .XYView import XYView
     control = cls.GetInstance()