@@ -139,7 +139,7 @@ def insertItem(self, item):
139139 """
140140 Insert a plot item
141141
142- :param QwtPlotItem item: PlotItem
142+ :param qwt.plot. QwtPlotItem item: PlotItem
143143
144144 .. seealso::
145145
@@ -151,7 +151,7 @@ def removeItem(self, item):
151151 """
152152 Remove a plot item
153153
154- :param QwtPlotItem item: PlotItem
154+ :param qwt.plot. QwtPlotItem item: PlotItem
155155
156156 .. seealso::
157157
@@ -231,7 +231,7 @@ class QwtPlot(QFrame, QwtPlotDict):
231231 are calculated from the plot items, using algorithms (`QwtScaleEngine`)
232232 which can be configured separately for each axis.
233233
234- The simpleplot example is a good starting point to see how to set up a
234+ The following example is a good starting point to see how to set up a
235235 plot widget::
236236
237237 from qwt.qt.QtGui import QApplication
@@ -1476,7 +1476,7 @@ def updateLegend(self, plotItem=None):
14761476 If plotItem is None, emit QwtPlot.SIG_LEGEND_DATA_CHANGED for all
14771477 plot item. Otherwise, emit the signal for passed plot item.
14781478
1479- :param QwtPlotItem plotItem: Plot item
1479+ :param qwt.plot. QwtPlotItem plotItem: Plot item
14801480
14811481 .. seealso::
14821482
@@ -1501,7 +1501,7 @@ def updateLegendItems(self, plotItem, legendData):
15011501 Call `QwtPlotItem.updateLegend()`, when the
15021502 `QwtPlotItem.LegendInterest` flag is set.
15031503
1504- :param QwtPlotItem plotItem: Plot item
1504+ :param qwt.plot. QwtPlotItem plotItem: Plot item
15051505 :param list legendData: Entries to be displayed for the plot item ( usually 1 )
15061506
15071507 .. seealso::
@@ -1518,7 +1518,7 @@ def attachItem(self, plotItem, on):
15181518 """
15191519 Attach/Detach a plot item
15201520
1521- :param QwtPlotItem plotItem: Plot item
1521+ :param qwt.plot. QwtPlotItem plotItem: Plot item
15221522 :param bool on: When true attach the item, otherwise detach it
15231523 """
15241524 if plotItem .testItemInterest (QwtPlotItem .LegendInterest ):
@@ -1673,7 +1673,7 @@ def attach(self, plot):
16731673 call to attach (if necessary). If a None argument is passed, it will
16741674 detach from any `QwtPlot` it was attached to.
16751675
1676- :param QwtPlot plot: Plot widget
1676+ :param qwt.plot. QwtPlot plot: Plot widget
16771677
16781678 .. seealso::
16791679
@@ -2166,7 +2166,7 @@ def updateLegend(self, item, data):
21662166 updateLegend() is only called when the LegendInterest interest
21672167 is enabled. The default implementation does nothing.
21682168
2169- :param QwtPlotItem item: Plot item to be displayed on a legend
2169+ :param qwt.plot. QwtPlotItem item: Plot item to be displayed on a legend
21702170 :param list data: Attributes how to display item on the legend
21712171
21722172 .. note::
0 commit comments