plotpy.curve¶
- The curve module provides curve-related objects:
plotpy.curve.CurvePlot
: a 2d curve plotting widgetplotpy.curve.CurveItem
: a curve plot itemplotpy.curve.ErrorBarCurveItem
: a curve plot item with error barsplotpy.curve.GridItem
plotpy.curve.ItemListWidget
: base widget implementing the plot item list panelplotpy.curve.PlotItemList
: the plot item list panel
CurveItem
and GridItem
objects are plot items (derived from
QwtPlotItem) that may be displayed on a 2D plotting widget like
plotpy.curve.CurvePlot
or plotpy.image.ImagePlot
.
See also
- Module
plotpy.image
- Module providing image-related plot items and plotting widgets
- Module
plotpy.plot
- Module providing ready-to-use curve and image plotting widgets and dialog boxes
Examples¶
- Create a basic curve plotting widget:
- before creating any widget, a QApplication must be instantiated (that is a Qt internal requirement):
>>> import guidata
>>> app = guidata.qapplication()
- that is mostly equivalent to the following (the only difference is that the guidata helper function also installs the Qt translation corresponding to the system locale):
>>> from PyQt4.QtGui import QApplication
>>> app = QApplication([])
- now that a QApplication object exists, we may create the plotting widget:
>>> from plotpy.curve import CurvePlot
>>> plot = CurvePlot(title="Example", xlabel="X", ylabel="Y")
- Create a curve item:
- from the associated plot item class (e.g. ErrorBarCurveItem to
create a curve with error bars): the item properties are then assigned
by creating the appropriate style parameters object
(e.g.
plotpy.styles.ErrorBarParam
)
- from the associated plot item class (e.g. ErrorBarCurveItem to
create a curve with error bars): the item properties are then assigned
by creating the appropriate style parameters object
(e.g.
>>> from plotpy.curve import CurveItem
>>> from plotpy.styles import CurveParam
>>> param = CurveParam()
>>> param.label = 'My curve'
>>> curve = CurveItem(param)
>>> curve.set_data(x, y)
- or using the plot item builder (see
plotpy.builder.make()
):
>>> from plotpy.builder import make
>>> curve = make.curve(x, y, title='My curve')
Attach the curve to the plotting widget:
>>> plot.add_item(curve)
Display the plotting widget:
>>> plot.show()
>>> app.exec_()
Reference¶
-
class
plotpy.curve.
CurvePlot
(parent=None, title=None, xlabel=None, ylabel=None, xunit=None, yunit=None, gridparam=None, section='plot', axes_synchronised=False)[source]¶ Construct a 2D curve plotting widget (this class inherits
plotpy.baseplot.BasePlot
)- parent: parent widget
- title: plot title
- xlabel: (bottom axis title, top axis title) or bottom axis title only
- ylabel: (left axis title, right axis title) or left axis title only
- xunit: (bottom axis unit, top axis unit) or bottom axis unit only
- yunit: (left axis unit, right axis unit) or left axis unit only
- gridparam: GridParam instance
- axes_synchronised: keep all x and y axes synchronised when zomming or panning
-
DEFAULT_ITEM_TYPE
¶ alias of
ICurveItemType
-
SIG_PLOT_AXIS_CHANGED
¶ Signal emitted by plot when plot axis has changed, e.g. when panning/zooming (arg: plot))
-
do_pan_view
(dx, dy)[source]¶ Translate the active axes by dx, dy dx, dy are tuples composed of (initial pos, dest pos)
-
do_zoom_view
(dx, dy, lock_aspect_ratio=False)[source]¶ Change the scale of the active axes (zoom/dezoom) according to dx, dy dx, dy are tuples composed of (initial pos, dest pos) We try to keep initial pos fixed on the canvas as the scale changes
-
get_default_item
()[source]¶ Return default item, depending on plot’s default item type (e.g. for a curve plot, this is a curve item type).
Return nothing if there is more than one item matching the default item type.
-
add_item
(item, z=None)[source]¶ Add a plot item instance to this plot widget
- item:
qwt.QwtPlotItem
object implementing theplotpy.interfaces.IBasePlotItem
interface - z: item’s z order (None -> z = max(self.get_items())+1)
- item:
-
set_active_item
(item)[source]¶ Override base set_active_item to change the grid’s axes according to the selected item
-
set_axis_limits
(axis_id, vmin, vmax, stepsize=0)[source]¶ Set axis limits (minimum and maximum values)
-
get_axis_direction
(axis_id)[source]¶ Return axis direction of increasing values
- axis_id: axis id (BasePlot.Y_LEFT, BasePlot.X_BOTTOM, ...) or string: ‘bottom’, ‘left’, ‘top’ or ‘right’
-
set_axis_direction
(axis_id, reverse=False)[source]¶ Set axis direction of increasing values
axis_id: axis id (BasePlot.Y_LEFT, BasePlot.X_BOTTOM, ...) or string: ‘bottom’, ‘left’, ‘top’ or ‘right’
- reverse: False (default)
- x-axis values increase from left to right
- y-axis values increase from bottom to top
- reverse: True
- x-axis values increase from right to left
- y-axis values increase from top to bottom
-
set_titles
(title=None, xlabel=None, ylabel=None, xunit=None, yunit=None)[source]¶ Set plot and axes titles at once
- title: plot title
- xlabel: (bottom axis title, top axis title) or bottom axis title only
- ylabel: (left axis title, right axis title) or left axis title only
- xunit: (bottom axis unit, top axis unit) or bottom axis unit only
- yunit: (left axis unit, right axis unit) or left axis unit only
-
set_pointer
(pointer_type)[source]¶ Set pointer.
Valid values of pointer_type:
- None: disable pointer
- “canvas”: enable canvas pointer
- “curve”: enable on-curve pointer
-
class
RenderFlags
(QWidget.RenderFlags)¶ QWidget.RenderFlags(int) QWidget.RenderFlags()
-
CurvePlot.
acceptDrops
() → bool¶
-
CurvePlot.
accessibleDescription
() → str¶
-
CurvePlot.
accessibleName
() → str¶
-
CurvePlot.
actions
() → list-of-QAction¶
-
CurvePlot.
activateWindow
()¶
-
CurvePlot.
addAction
(QAction)¶
-
CurvePlot.
addActions
(list-of-QAction)¶
-
CurvePlot.
add_item_with_z_offset
(item, zoffset)¶ Add a plot item instance within a specified z range, over zmin
-
CurvePlot.
adjustSize
()¶
-
CurvePlot.
attachItem
(plotItem, on)¶ Attach/Detach a plot item
Parameters: - plotItem (qwt.plot.QwtPlotItem) – Plot item
- on (bool) – When true attach the item, otherwise detach it
-
CurvePlot.
autoDelete
()¶ Returns: true if auto deletion is enabled See also
-
CurvePlot.
autoFillBackground
() → bool¶
-
CurvePlot.
autoRefresh
()¶ Replots the plot if
autoReplot()
is True.
-
CurvePlot.
autoReplot
()¶ Returns: True if the autoReplot option is set. See also
-
CurvePlot.
axisAutoScale
(axisId)¶ Parameters: axisId (int) – Axis index Returns: True, if autoscaling is enabled
-
CurvePlot.
axisEnabled
(axisId)¶ Parameters: axisId (int) – Axis index Returns: True, if a specified axis is enabled
-
CurvePlot.
axisFont
(axisId)¶ Parameters: axisId (int) – Axis index Returns: The font of the scale labels for a specified axis
-
CurvePlot.
axisInterval
(axisId)¶ Parameters: axisId (int) – Axis index Returns: The current interval of the specified axis This is only a convenience function for axisScaleDiv(axisId).interval()
See also
qwt.scale_div.QwtScaleDiv
,axisScaleDiv()
-
CurvePlot.
axisMaxMajor
(axisId)¶ Parameters: axisId (int) – Axis index Returns: The maximum number of major ticks for a specified axis See also
setAxisMaxMajor()
,qwt.scale_engine.QwtScaleEngine.divideScale()
-
CurvePlot.
axisMaxMinor
(axisId)¶ Parameters: axisId (int) – Axis index Returns: The maximum number of minor ticks for a specified axis See also
setAxisMaxMinor()
,qwt.scale_engine.QwtScaleEngine.divideScale()
-
CurvePlot.
axisScaleDiv
(axisId)¶ Parameters: axisId (int) – Axis index Returns: The scale division of a specified axis axisScaleDiv(axisId).lowerBound(), axisScaleDiv(axisId).upperBound() are the current limits of the axis scale.
See also
qwt.scale_div.QwtScaleDiv
,setAxisScaleDiv()
,qwt.scale_engine.QwtScaleEngine.divideScale()
-
CurvePlot.
axisScaleDraw
(axisId)¶ Parameters: axisId (int) – Axis index Returns: Specified scaleDraw for axis, or NULL if axis is invalid.
-
CurvePlot.
axisScaleEngine
(axisId)¶ Parameters: axisId (int) – Axis index Returns: Scale engine for a specific axis See also
-
CurvePlot.
axisStepSize
(axisId)¶ Parameters: axisId (int) – Axis index Returns: step size parameter value This doesn’t need to be the step size of the current scale.
See also
setAxisScale()
,qwt.scale_engine.QwtScaleEngine.divideScale()
-
CurvePlot.
axisTitle
(axisId)¶ Parameters: axisId (int) – Axis index Returns: Title of a specified axis
-
CurvePlot.
axisValid
(axisId)¶ Parameters: axisId (int) – Axis Returns: True if the specified axis exists, otherwise False
-
CurvePlot.
axisWidget
(axisId)¶ Parameters: axisId (int) – Axis index Returns: Scale widget of the specified axis, or None if axisId is invalid.
-
CurvePlot.
backgroundRole
() → QPalette.ColorRole¶
-
CurvePlot.
baseSize
() → QSize¶
-
CurvePlot.
blockSignals
(bool) → bool¶
-
CurvePlot.
canvas
()¶ Returns: the plot’s canvas
-
CurvePlot.
canvasBackground
()¶ Returns: Background brush of the plotting area. See also
-
CurvePlot.
canvasMap
(axisId)¶ Parameters: axisId (int) – Axis Returns: Map for the axis on the canvas. With this map pixel coordinates can translated to plot coordinates and vice versa. See also
qwt.scale_map.QwtScaleMap
,transform()
,invTransform()
-
CurvePlot.
changeEvent
(QEvent)¶
-
CurvePlot.
childAt
(QPoint) → QWidget¶ QWidget.childAt(int, int) -> QWidget
-
CurvePlot.
children
() → list-of-QObject¶
-
CurvePlot.
childrenRect
() → QRect¶
-
CurvePlot.
childrenRegion
() → QRegion¶
-
CurvePlot.
clearFocus
()¶
-
CurvePlot.
clearMask
()¶
-
CurvePlot.
close
() → bool¶
-
CurvePlot.
colorCount
() → int¶
-
CurvePlot.
connect
(QObject, SIGNAL(), QObject, SLOT(), Qt.ConnectionType=Qt.AutoConnection) → bool¶ QObject.connect(QObject, SIGNAL(), callable, Qt.ConnectionType=Qt.AutoConnection) -> bool QObject.connect(QObject, SIGNAL(), SLOT(), Qt.ConnectionType=Qt.AutoConnection) -> bool
-
CurvePlot.
contentsMargins
() → QMargins¶
-
CurvePlot.
contentsRect
() → QRect¶
-
CurvePlot.
contextMenuPolicy
() → Qt.ContextMenuPolicy¶
-
CurvePlot.
copy_to_clipboard
()¶ Copy widget’s window to clipboard
-
CurvePlot.
cursor
() → QCursor¶
-
CurvePlot.
customContextMenuRequested
¶ QWidget.customContextMenuRequested[QPoint] [signal]
-
CurvePlot.
del_item
(item)¶ Remove item from widget Convenience function (see ‘del_items’)
-
CurvePlot.
del_items
(items)¶ Remove item from widget
-
CurvePlot.
deleteLater
()¶
-
CurvePlot.
depth
() → int¶
-
CurvePlot.
deserialize
(reader)¶ - Restore items from HDF5 file:
- reader:
guidata.hdf5io.HDF5Reader
object
- reader:
See also
plotpy.baseplot.BasePlot.save_items_to_hdf5()
-
CurvePlot.
destroyed
¶ QObject.destroyed[QObject] [signal] QObject.destroyed [signal]
-
CurvePlot.
detachItems
(rtti, autoDelete)¶ Detach items from the dictionary
Parameters: - rtti (int) – In case of QwtPlotItem.Rtti_PlotItem detach all items otherwise only those items of the type rtti.
- autoDelete (bool) – If true, delete all detached items
-
CurvePlot.
devType
() → int¶
-
CurvePlot.
disable_autoscale
()¶ Re-apply the axis scales so as to disable autoscaling without changing the view
-
CurvePlot.
disable_unused_axes
()¶ Disable unused axes
-
CurvePlot.
disconnect
(QObject, SIGNAL(), QObject, SLOT()) → bool¶ QObject.disconnect(QObject, SIGNAL(), callable) -> bool
-
CurvePlot.
drawCanvas
(painter)¶ Redraw the canvas.
Parameters: painter (QPainter) – Painter used for drawing Warning
drawCanvas calls drawItems what is also used for printing. Applications that like to add individual plot items better overload drawItems()
See also
getCanvasMarginsHint()
,QwtPlotItem.getCanvasMarginHint()
-
CurvePlot.
drawFrame
(QPainter)¶
-
CurvePlot.
drawItems
(painter, canvasRect, maps)¶ Redraw the canvas.
Parameters: - painter (QPainter) – Painter used for drawing
- canvasRect (QRectF) – Bounding rectangle where to paint
- maps (list) – QwtPlot.axisCnt maps, mapping between plot and paint device coordinates
Note
Usually canvasRect is contentsRect() of the plot canvas. Due to a bug in Qt this rectangle might be wrong for certain frame styles ( f.e QFrame.Box ) and it might be necessary to fix the margins manually using QWidget.setContentsMargins()
-
CurvePlot.
dumpObjectInfo
()¶
-
CurvePlot.
dumpObjectTree
()¶
-
CurvePlot.
dynamicPropertyNames
() → list-of-QByteArray¶
-
CurvePlot.
edit_axis_parameters
(axis_id)¶ Edit axis parameters
-
CurvePlot.
edit_plot_parameters
(key)¶ Edit plot parameters
-
CurvePlot.
effectiveWinId
() → sip.voidptr¶
-
CurvePlot.
emit
(SIGNAL(), ...)¶
-
CurvePlot.
enableAxis
(axisId, tf=True)¶ Enable or disable a specified axis
When an axis is disabled, this only means that it is not visible on the screen. Curves, markers and can be attached to disabled axes, and transformation of screen coordinates into values works as normal.
Only xBottom and yLeft are enabled by default.
Parameters: - axisId (int) – Axis index
- tf (bool) – True (enabled) or False (disabled)
-
CurvePlot.
enable_used_axes
()¶ Enable only used axes For now, this is needed only by the pyplot interface
-
CurvePlot.
ensurePolished
()¶
-
CurvePlot.
exportTo
(filename, size=(800, 600), size_mm=None, resolution=72.0, format_=None)¶ Export plot to PDF or image file (SVG, PNG, ...)
Parameters: - filename (str) – Filename
- size (tuple) – (width, height) size in pixels
- size_mm (tuple) – (width, height) size in millimeters
- resolution (float) – Image resolution
- format (str) – File format (PDF, SVG, PNG, ...)
-
CurvePlot.
find
(sip.voidptr) → QWidget¶
-
CurvePlot.
findChild
(type, str name='') → QObject¶ QObject.findChild(tuple, str name=’‘) -> QObject
-
CurvePlot.
findChildren
(type, str name='') → list-of-QObject¶ QObject.findChildren(tuple, str name=’‘) -> list-of-QObject QObject.findChildren(type, QRegExp) -> list-of-QObject QObject.findChildren(tuple, QRegExp) -> list-of-QObject
-
CurvePlot.
focusPolicy
() → Qt.FocusPolicy¶
-
CurvePlot.
focusProxy
() → QWidget¶
-
CurvePlot.
focusWidget
() → QWidget¶
-
CurvePlot.
font
() → QFont¶
-
CurvePlot.
fontInfo
() → QFontInfo¶
-
CurvePlot.
fontMetrics
() → QFontMetrics¶
Returns: Text of the footer See also
Returns: Footer label widget.
-
CurvePlot.
foregroundRole
() → QPalette.ColorRole¶
-
CurvePlot.
frameGeometry
() → QRect¶
-
CurvePlot.
frameRect
() → QRect¶
-
CurvePlot.
frameShadow
() → QFrame.Shadow¶
-
CurvePlot.
frameShape
() → QFrame.Shape¶
-
CurvePlot.
frameSize
() → QSize¶
-
CurvePlot.
frameStyle
() → int¶
-
CurvePlot.
frameWidth
() → int¶
-
CurvePlot.
geometry
() → QRect¶
-
CurvePlot.
getCanvasMarginsHint
(maps, canvasRect)¶ Calculate the canvas margins
Parameters: - maps (list) – QwtPlot.axisCnt maps, mapping between plot and paint device coordinates
- canvasRect (QRectF) – Bounding rectangle where to paint
Plot items might indicate, that they need some extra space at the borders of the canvas by the QwtPlotItem.Margins flag.
See also
updateCanvasMargins()
,getCanvasMarginHint()
-
CurvePlot.
getContentsMargins
() -> (int, int, int, int)¶
-
CurvePlot.
get_active_axes
()¶ Return active axes
-
CurvePlot.
get_active_item
(force=False)¶ Return active item Force item activation if there is no active item
-
CurvePlot.
get_axesparam_class
(item)¶ Return AxesParam dataset class associated to item’s type
-
CurvePlot.
get_axis_color
(axis_id)¶ Get axis color (color name, i.e. string)
-
CurvePlot.
get_axis_font
(axis_id)¶ Get axis font
-
CurvePlot.
get_axis_id
(axis_name)¶ Return axis ID from axis name If axis ID is passed directly, check the ID
-
CurvePlot.
get_axis_limits
(axis_id)¶ Return axis limits (minimum and maximum values)
-
CurvePlot.
get_axis_scale
(axis_id)¶ Return the name (‘lin’ or ‘log’) of the scale used by axis
-
CurvePlot.
get_axis_title
(axis_id)¶ Get axis title
-
CurvePlot.
get_axis_unit
(axis_id)¶ Get axis unit
Return widget context menu
-
CurvePlot.
get_items
(z_sorted=False, item_type=None)¶ Return widget’s item list (items are based on IBasePlotItem’s interface)
-
CurvePlot.
get_last_active_item
(item_type)¶ Return last active item corresponding to passed item_type
-
CurvePlot.
get_max_z
()¶ Return maximum z-order for all items registered in plot If there is no item, return 0
-
CurvePlot.
get_nearest_object
(pos, close_dist=0)¶ Return nearest item from position ‘pos’
If close_dist > 0:
Return the first found item (higher z) which distance to ‘pos’ is less than close_distelse:
Return the closest item
-
CurvePlot.
get_nearest_object_in_z
(pos)¶ Return nearest item for which position ‘pos’ is inside of it (iterate over items with respect to their ‘z’ coordinate)
-
CurvePlot.
get_private_items
(z_sorted=False, item_type=None)¶ Return widget’s private item list (items are based on IBasePlotItem’s interface)
-
CurvePlot.
get_public_items
(z_sorted=False, item_type=None)¶ Return widget’s public item list (items are based on IBasePlotItem’s interface)
-
CurvePlot.
get_scales
()¶ Return active curve scales
-
CurvePlot.
get_selected_items
(z_sorted=False, item_type=None)¶ Return selected items
-
CurvePlot.
get_title
()¶ Get plot title
-
CurvePlot.
grabGesture
(Qt.GestureType, Qt.GestureFlags flags=Qt.GestureFlags(0))¶
-
CurvePlot.
grabKeyboard
()¶
-
CurvePlot.
grabMouse
()¶ QWidget.grabMouse(QCursor)
-
CurvePlot.
grabShortcut
(QKeySequence, Qt.ShortcutContext context=Qt.WindowShortcut) → int¶
-
CurvePlot.
graphicsEffect
() → QGraphicsEffect¶
-
CurvePlot.
graphicsProxyWidget
() → QGraphicsProxyWidget¶
-
CurvePlot.
hasFocus
() → bool¶
-
CurvePlot.
hasMouseTracking
() → bool¶
-
CurvePlot.
height
() → int¶
-
CurvePlot.
heightForWidth
(int) → int¶
-
CurvePlot.
heightMM
() → int¶
-
CurvePlot.
hide
()¶
-
CurvePlot.
hide_items
(items=None, item_type=None)¶ Hide items (if items is None, hide all items)
-
CurvePlot.
inherits
(str) → bool¶
-
CurvePlot.
initAxesData
()¶ Initialize axes
-
CurvePlot.
inputContext
() → QInputContext¶
-
CurvePlot.
inputMethodHints
() → Qt.InputMethodHints¶
-
CurvePlot.
inputMethodQuery
(Qt.InputMethodQuery) → object¶
-
CurvePlot.
insertAction
(QAction, QAction)¶
-
CurvePlot.
insertActions
(QAction, list-of-QAction)¶
-
CurvePlot.
insertItem
(item)¶ Insert a plot item
Parameters: item (qwt.plot.QwtPlotItem) – PlotItem See also
-
CurvePlot.
insertLegend
(legend, pos=None, ratio=-1)¶ Insert a legend
If the position legend is QwtPlot.LeftLegend or QwtPlot.RightLegend the legend will be organized in one column from top to down. Otherwise the legend items will be placed in a table with a best fit number of columns from left to right.
insertLegend() will set the plot widget as parent for the legend. The legend will be deleted in the destructor of the plot or when another legend is inserted.
Legends, that are not inserted into the layout of the plot widget need to connect to the legendDataChanged() signal. Calling updateLegend() initiates this signal for an initial update. When the application code wants to implement its own layout this also needs to be done for rendering plots to a document ( see QwtPlotRenderer ).
Parameters: - legend (qwt.legend.QwtAbstractLegend) – Legend
- pos (QwtPlot.LegendPosition) – The legend’s position.
- ratio (float) – Ratio between legend and the bounding rectangle of title, canvas and axes
Note
For top/left position the number of columns will be limited to 1, otherwise it will be set to unlimited.
Note
The legend will be shrunk if it would need more space than the given ratio. The ratio is limited to ]0.0 .. 1.0]. In case of <= 0.0 it will be reset to the default ratio. The default vertical/horizontal ratio is 0.33/0.5.
See also
legend()
,qwt.plot_layout.QwtPlotLayout.legendPosition()
,qwt.plot_layout.QwtPlotLayout.setLegendPosition()
-
CurvePlot.
installEventFilter
(QObject)¶
-
CurvePlot.
invTransform
(axisId, pos)¶ Transform the x or y coordinate of a position in the drawing region into a value.
Parameters: - axisId (int) – Axis index
- pos (int) – position
Warning
The position can be an x or a y coordinate, depending on the specified axis.
-
CurvePlot.
invalidate
()¶ Invalidate paint cache and schedule redraw use instead of replot when only the content of the canvas needs redrawing (axes, shouldn’t change)
-
CurvePlot.
isActiveWindow
() → bool¶
-
CurvePlot.
isAncestorOf
(QWidget) → bool¶
-
CurvePlot.
isEnabled
() → bool¶
-
CurvePlot.
isEnabledTo
(QWidget) → bool¶
-
CurvePlot.
isEnabledToTLW
() → bool¶
-
CurvePlot.
isFullScreen
() → bool¶
-
CurvePlot.
isHidden
() → bool¶
-
CurvePlot.
isLeftToRight
() → bool¶
-
CurvePlot.
isMaximized
() → bool¶
-
CurvePlot.
isMinimized
() → bool¶
-
CurvePlot.
isModal
() → bool¶
-
CurvePlot.
isRightToLeft
() → bool¶
-
CurvePlot.
isTopLevel
() → bool¶
-
CurvePlot.
isVisible
() → bool¶
-
CurvePlot.
isVisibleTo
(QWidget) → bool¶
-
CurvePlot.
isWidgetType
() → bool¶
-
CurvePlot.
isWindow
() → bool¶
-
CurvePlot.
isWindowModified
() → bool¶
-
CurvePlot.
itemList
(rtti=None)¶ A list of attached plot items.
Use caution when iterating these lists, as removing/detaching an item will invalidate the iterator. Instead you can place pointers to objects to be removed in a removal list, and traverse that list later.
Parameters: rtti (int) – In case of QwtPlotItem.Rtti_PlotItem detach all items otherwise only those items of the type rtti. Returns: List of all attached plot items of a specific type. If rtti is None, return a list of all attached plot items.
-
CurvePlot.
keyboardGrabber
() → QWidget¶
-
CurvePlot.
killTimer
(int)¶
-
CurvePlot.
layout
() → QLayout¶
-
CurvePlot.
layoutDirection
() → Qt.LayoutDirection¶
-
CurvePlot.
legend
()¶ Returns: the plot’s legend See also
-
CurvePlot.
lineWidth
() → int¶
-
CurvePlot.
locale
() → QLocale¶
-
CurvePlot.
logicalDpiX
() → int¶
-
CurvePlot.
logicalDpiY
() → int¶
-
CurvePlot.
lower
()¶
-
CurvePlot.
mapFrom
(QWidget, QPoint) → QPoint¶
-
CurvePlot.
mapFromGlobal
(QPoint) → QPoint¶
-
CurvePlot.
mapFromParent
(QPoint) → QPoint¶
-
CurvePlot.
mapTo
(QWidget, QPoint) → QPoint¶
-
CurvePlot.
mapToGlobal
(QPoint) → QPoint¶
-
CurvePlot.
mapToParent
(QPoint) → QPoint¶
-
CurvePlot.
mask
() → QRegion¶
-
CurvePlot.
maximumHeight
() → int¶
-
CurvePlot.
maximumSize
() → QSize¶
-
CurvePlot.
maximumWidth
() → int¶
-
CurvePlot.
metaObject
() → QMetaObject¶
-
CurvePlot.
midLineWidth
() → int¶
-
CurvePlot.
minimumHeight
() → int¶
-
CurvePlot.
minimumSize
() → QSize¶
-
CurvePlot.
minimumSizeHint
()¶ Returns: Return a minimum size hint
-
CurvePlot.
minimumWidth
() → int¶
-
CurvePlot.
mouseDoubleClickEvent
(event)¶ Reimplement QWidget method
-
CurvePlot.
mouseGrabber
() → QWidget¶
-
CurvePlot.
move
(QPoint)¶ QWidget.move(int, int)
-
CurvePlot.
moveToThread
(QThread)¶
-
CurvePlot.
move_down
(item_list)¶ Move item(s) down, i.e. to the background (swap item with the previous item in z-order)
item: plot item or list of plot items
Return True if items have been moved effectively
-
CurvePlot.
move_up
(item_list)¶ Move item(s) up, i.e. to the foreground (swap item with the next item in z-order)
item: plot item or list of plot items
Return True if items have been moved effectively
-
CurvePlot.
nativeParentWidget
() → QWidget¶
-
CurvePlot.
nextInFocusChain
() → QWidget¶
-
CurvePlot.
normalGeometry
() → QRect¶
-
CurvePlot.
numColors
() → int¶
-
CurvePlot.
objectName
() → str¶
-
CurvePlot.
overrideWindowFlags
(Qt.WindowFlags)¶
-
CurvePlot.
overrideWindowState
(Qt.WindowStates)¶
-
CurvePlot.
paintEngine
() → QPaintEngine¶
-
CurvePlot.
paintEvent
(QPaintEvent)¶
-
CurvePlot.
paintingActive
() → bool¶
-
CurvePlot.
palette
() → QPalette¶
-
CurvePlot.
parent
() → QObject¶
-
CurvePlot.
parentWidget
() → QWidget¶
-
CurvePlot.
physicalDpiX
() → int¶
-
CurvePlot.
physicalDpiY
() → int¶
-
CurvePlot.
plotLayout
()¶ Returns: the plot’s layout See also
-
CurvePlot.
pos
() → QPoint¶
-
CurvePlot.
previousInFocusChain
() → QWidget¶
-
CurvePlot.
print_
(printer)¶ Print plot to printer
Parameters: printer (QPaintDevice or QPrinter or QSvgGenerator) – Printer
-
CurvePlot.
property
(str) → object¶
-
CurvePlot.
pyqtConfigure
(...)¶ Each keyword argument is either the name of a Qt property or a Qt signal. For properties the property is set to the given value which should be of an appropriate type. For signals the signal is connected to the given value which should be a callable.
-
CurvePlot.
raise_
()¶
-
CurvePlot.
read_axes_styles
(section, options)¶ Read axes styles from section and options (one option for each axis in the order left, right, bottom, top)
Skip axis if option is None
-
CurvePlot.
rect
() → QRect¶
-
CurvePlot.
releaseKeyboard
()¶
-
CurvePlot.
releaseMouse
()¶
-
CurvePlot.
releaseShortcut
(int)¶
-
CurvePlot.
removeAction
(QAction)¶
-
CurvePlot.
removeEventFilter
(QObject)¶
-
CurvePlot.
removeItem
(item)¶ Remove a plot item
Parameters: item (qwt.plot.QwtPlotItem) – PlotItem See also
-
CurvePlot.
render
(QPaintDevice, QPoint targetOffset=QPoint(), QRegion sourceRegion=QRegion(), QWidget.RenderFlags flags=QWidget.DrawWindowBackground|QWidget.DrawChildren)¶ QWidget.render(QPainter, QPoint targetOffset=QPoint(), QRegion sourceRegion=QRegion(), QWidget.RenderFlags flags=QWidget.DrawWindowBackground|QWidget.DrawChildren)
-
CurvePlot.
repaint
()¶ QWidget.repaint(int, int, int, int) QWidget.repaint(QRect) QWidget.repaint(QRegion)
-
CurvePlot.
replot
()¶ Redraw the plot
If the autoReplot option is not set (which is the default) or if any curves are attached to raw data, the plot has to be refreshed explicitly in order to make changes visible.
See also
-
CurvePlot.
resize
(QSize)¶ QWidget.resize(int, int)
-
CurvePlot.
restoreGeometry
(QByteArray) → bool¶
-
CurvePlot.
restore_items
(iofile)¶ - Restore items from file using the
pickle
protocol - iofile: file object or filename
- Restore items from file using the
-
CurvePlot.
saveGeometry
() → QByteArray¶
-
CurvePlot.
save_items
(iofile, selected=False)¶ - Save (serializable) items to file using the
pickle
protocol - iofile: file object or filename
- selected=False: if True, will save only selected items
- Save (serializable) items to file using the
-
CurvePlot.
save_widget
(fname)¶ Grab widget’s window and save it to filename (*.png, *.pdf)
-
CurvePlot.
scroll
(int, int)¶ QWidget.scroll(int, int, QRect)
-
CurvePlot.
select_all
()¶ Select all selectable items
-
CurvePlot.
select_item
(item)¶ Select item
-
CurvePlot.
select_some_items
(items)¶ Select items
-
CurvePlot.
serialize
(writer, selected=False)¶ - Save (serializable) items to HDF5 file:
- writer:
guidata.hdf5io.HDF5Writer
object - selected=False: if True, will save only selected items
- writer:
See also
plotpy.baseplot.BasePlot.restore_items_from_hdf5()
-
CurvePlot.
setAcceptDrops
(bool)¶
-
CurvePlot.
setAccessibleDescription
(str)¶
-
CurvePlot.
setAccessibleName
(str)¶
-
CurvePlot.
setAttribute
(Qt.WidgetAttribute, bool on=True)¶
-
CurvePlot.
setAutoDelete
(autoDelete)¶ En/Disable Auto deletion
If Auto deletion is on all attached plot items will be deleted in the destructor of QwtPlotDict. The default value is on.
Parameters: autoDelete (bool) – enable/disable See also
-
CurvePlot.
setAutoFillBackground
(bool)¶
-
CurvePlot.
setAutoReplot
(tf=True)¶ Set or reset the autoReplot option
If the autoReplot option is set, the plot will be updated implicitly by manipulating member functions. Since this may be time-consuming, it is recommended to leave this option switched off and call
replot()
explicitly if necessary.The autoReplot option is set to false by default, which means that the user has to call
replot()
in order to make changes visible.Parameters: tf (bool) – True or False. Defaults to True. See also
-
CurvePlot.
setAxisAutoScale
(axisId, on=True)¶ Enable autoscaling for a specified axis
This member function is used to switch back to autoscaling mode after a fixed scale has been set. Autoscaling is enabled by default.
Parameters: - axisId (int) – Axis index
- on (bool) – On/Off
See also
Note
The autoscaling flag has no effect until updateAxes() is executed ( called by replot() ).
-
CurvePlot.
setAxisFont
(axisId, font)¶ Change the font of an axis
Parameters: - axisId (int) – Axis index
- font (QFont) – Font
Warning
This function changes the font of the tick labels, not of the axis title.
-
CurvePlot.
setAxisLabelAlignment
(axisId, alignment)¶ Change the alignment of the tick labels
Parameters: - axisId (int) – Axis index
- alignment (Qt.Alignment) – Or’d Qt.AlignmentFlags
See also
qwt.scale_draw.QwtScaleDraw.setLabelAlignment()
-
CurvePlot.
setAxisLabelAutoSize
(axisId, state)¶ Set tick labels automatic size option (default: on)
Parameters: - axisId (int) – Axis index
- state (bool) – On/off
See also
qwt.scale_draw.QwtScaleDraw.setLabelAutoSize()
-
CurvePlot.
setAxisLabelRotation
(axisId, rotation)¶ Rotate all tick labels
Parameters: - axisId (int) – Axis index
- rotation (float) – Angle in degrees. When changing the label rotation, the label alignment might be adjusted too.
See also
setLabelRotation()
,setAxisLabelAlignment()
-
CurvePlot.
setAxisMaxMajor
(axisId, maxMajor)¶ Set the maximum number of major scale intervals for a specified axis
Parameters: - axisId (int) – Axis index
- maxMajor (int) – Maximum number of major steps
See also
-
CurvePlot.
setAxisMaxMinor
(axisId, maxMinor)¶ Set the maximum number of minor scale intervals for a specified axis
Parameters: - axisId (int) – Axis index
- maxMinor (int) – Maximum number of minor steps
See also
-
CurvePlot.
setAxisScale
(axisId, min_, max_, stepSize=0)¶ Disable autoscaling and specify a fixed scale for a selected axis.
In updateAxes() the scale engine calculates a scale division from the specified parameters, that will be assigned to the scale widget. So updates of the scale widget usually happen delayed with the next replot.
Parameters: - axisId (int) – Axis index
- min (float) – Minimum of the scale
- max (float) – Maximum of the scale
- stepSize (float) – Major step size. If <code>step == 0</code>, the step size is calculated automatically using the maxMajor setting.
See also
setAxisMaxMajor()
,setAxisAutoScale()
,axisStepSize()
,qwt.scale_engine.QwtScaleEngine.divideScale()
-
CurvePlot.
setAxisScaleDiv
(axisId, scaleDiv)¶ Disable autoscaling and specify a fixed scale for a selected axis.
The scale division will be stored locally only until the next call of updateAxes(). So updates of the scale widget usually happen delayed with the next replot.
Parameters: - axisId (int) – Axis index
- scaleDiv (qwt.scale_div.QwtScaleDiv) – Scale division
See also
-
CurvePlot.
setAxisScaleDraw
(axisId, scaleDraw)¶ Set a scale draw
Parameters: - axisId (int) – Axis index
- scaleDraw (qwt.scale_draw.QwtScaleDraw) – Object responsible for drawing scales.
By passing scaleDraw it is possible to extend QwtScaleDraw functionality and let it take place in QwtPlot. Please note that scaleDraw has to be created with new and will be deleted by the corresponding QwtScale member ( like a child object ).
See also
qwt.scale_draw.QwtScaleDraw
,qwt.scale_widget.QwtScaleWigdet
Warning
The attributes of scaleDraw will be overwritten by those of the previous QwtScaleDraw.
-
CurvePlot.
setAxisScaleEngine
(axisId, scaleEngine)¶ Change the scale engine for an axis
Parameters: - axisId (int) – Axis index
- scaleEngine (qwt.scale_engine.QwtScaleEngine) – Scale engine
See also
-
CurvePlot.
setAxisTitle
(axisId, title)¶ Change the title of a specified axis
Parameters: - axisId (int) – Axis index
- title (qwt.text.QwtText or str) – axis title
-
CurvePlot.
setBackgroundRole
(QPalette.ColorRole)¶
-
CurvePlot.
setBaseSize
(int, int)¶ QWidget.setBaseSize(QSize)
-
CurvePlot.
setCanvas
(canvas)¶ Set the drawing canvas of the plot widget.
The default canvas is a QwtPlotCanvas.
Parameters: canvas (QWidget) – Canvas Widget See also
-
CurvePlot.
setCanvasBackground
(brush)¶ Change the background of the plotting area
Sets brush to QPalette.Window of all color groups of the palette of the canvas. Using canvas().setPalette() is a more powerful way to set these colors.
Parameters: brush (QBrush) – New background brush See also
-
CurvePlot.
setContentsMargins
(int, int, int, int)¶ QWidget.setContentsMargins(QMargins)
-
CurvePlot.
setContextMenuPolicy
(Qt.ContextMenuPolicy)¶
-
CurvePlot.
setCursor
(QCursor)¶
-
CurvePlot.
setDisabled
(bool)¶
-
CurvePlot.
setEnabled
(bool)¶
-
CurvePlot.
setFixedHeight
(int)¶
-
CurvePlot.
setFixedSize
(QSize)¶ QWidget.setFixedSize(int, int)
-
CurvePlot.
setFixedWidth
(int)¶
-
CurvePlot.
setFocus
()¶ QWidget.setFocus(Qt.FocusReason)
-
CurvePlot.
setFocusPolicy
(Qt.FocusPolicy)¶
-
CurvePlot.
setFocusProxy
(QWidget)¶
-
CurvePlot.
setFont
(QFont)¶
Change the text the footer
Parameters: text (str or qwt.text.QwtText) – New text of the footer See also
-
CurvePlot.
setForegroundRole
(QPalette.ColorRole)¶
-
CurvePlot.
setFrameRect
(QRect)¶
-
CurvePlot.
setFrameShadow
(QFrame.Shadow)¶
-
CurvePlot.
setFrameShape
(QFrame.Shape)¶
-
CurvePlot.
setFrameStyle
(int)¶
-
CurvePlot.
setGeometry
(QRect)¶ QWidget.setGeometry(int, int, int, int)
-
CurvePlot.
setGraphicsEffect
(QGraphicsEffect)¶
-
CurvePlot.
setHidden
(bool)¶
-
CurvePlot.
setInputContext
(QInputContext)¶
-
CurvePlot.
setInputMethodHints
(Qt.InputMethodHints)¶
-
CurvePlot.
setLayout
(QLayout)¶
-
CurvePlot.
setLayoutDirection
(Qt.LayoutDirection)¶
-
CurvePlot.
setLineWidth
(int)¶
-
CurvePlot.
setLocale
(QLocale)¶
-
CurvePlot.
setMask
(QBitmap)¶ QWidget.setMask(QRegion)
-
CurvePlot.
setMaximumHeight
(int)¶
-
CurvePlot.
setMaximumSize
(int, int)¶ QWidget.setMaximumSize(QSize)
-
CurvePlot.
setMaximumWidth
(int)¶
-
CurvePlot.
setMidLineWidth
(int)¶
-
CurvePlot.
setMinimumHeight
(int)¶
-
CurvePlot.
setMinimumSize
(int, int)¶ QWidget.setMinimumSize(QSize)
-
CurvePlot.
setMinimumWidth
(int)¶
-
CurvePlot.
setMouseTracking
(bool)¶
-
CurvePlot.
setObjectName
(str)¶
-
CurvePlot.
setPalette
(QPalette)¶
-
CurvePlot.
setParent
(QWidget)¶ QWidget.setParent(QWidget, Qt.WindowFlags)
-
CurvePlot.
setPlotLayout
(layout)¶ Assign a new plot layout
Parameters: layout (qwt.plot_layout.QwtPlotLayout) – Layout See also
-
CurvePlot.
setProperty
(str, object) → bool¶
-
CurvePlot.
setShortcutAutoRepeat
(int, bool enabled=True)¶
-
CurvePlot.
setShortcutEnabled
(int, bool enabled=True)¶
-
CurvePlot.
setShown
(bool)¶
-
CurvePlot.
setSizeIncrement
(int, int)¶ QWidget.setSizeIncrement(QSize)
-
CurvePlot.
setSizePolicy
(QSizePolicy)¶ QWidget.setSizePolicy(QSizePolicy.Policy, QSizePolicy.Policy)
-
CurvePlot.
setStatusTip
(str)¶
-
CurvePlot.
setStyle
(QStyle)¶
-
CurvePlot.
setStyleSheet
(str)¶
-
CurvePlot.
setTabOrder
(QWidget, QWidget)¶
-
CurvePlot.
setTitle
(title)¶ Change the plot’s title
Parameters: title (str or qwt.text.QwtText) – New title See also
-
CurvePlot.
setToolTip
(str)¶
-
CurvePlot.
setUpdatesEnabled
(bool)¶
-
CurvePlot.
setVisible
(bool)¶
-
CurvePlot.
setWhatsThis
(str)¶
-
CurvePlot.
setWindowFilePath
(str)¶
-
CurvePlot.
setWindowFlags
(Qt.WindowFlags)¶
-
CurvePlot.
setWindowIcon
(QIcon)¶
-
CurvePlot.
setWindowIconText
(str)¶
-
CurvePlot.
setWindowModality
(Qt.WindowModality)¶
-
CurvePlot.
setWindowModified
(bool)¶
-
CurvePlot.
setWindowOpacity
(float)¶
-
CurvePlot.
setWindowRole
(str)¶
-
CurvePlot.
setWindowState
(Qt.WindowStates)¶
-
CurvePlot.
setWindowTitle
(str)¶
-
CurvePlot.
set_axis_color
(axis_id, color)¶ Set axis color color: color name (string) or QColor instance
-
CurvePlot.
set_axis_font
(axis_id, font)¶ Set axis font
-
CurvePlot.
set_axis_scale
(axis_id, scale, autoscale=True)¶ Set axis scale Example: self.set_axis_scale(curve.yAxis(), ‘lin’)
-
CurvePlot.
set_axis_ticks
(axis_id, nmajor=None, nminor=None)¶ Set axis maximum number of major ticks and maximum of minor ticks
-
CurvePlot.
set_axis_title
(axis_id, text)¶ Set axis title
-
CurvePlot.
set_axis_unit
(axis_id, text)¶ Set axis unit
-
CurvePlot.
set_item_visible
(item, state, notify=True, replot=True)¶ Show/hide item and emit a SIG_ITEMS_CHANGED signal
-
CurvePlot.
set_items
(*args)¶ Utility function used to quickly setup a plot with a set of items
-
CurvePlot.
set_items_readonly
(state)¶ Set all items readonly state to state Default item’s readonly state: False (items may be deleted)
-
CurvePlot.
set_manager
(manager, plot_id)¶ Set the associated
plotpy.plot.PlotManager
instance
-
CurvePlot.
set_scales
(xscale, yscale)¶ Set active curve scales Example: self.set_scales(‘lin’, ‘lin’)
-
CurvePlot.
set_title
(title)¶ Set plot title
-
CurvePlot.
show
()¶
-
CurvePlot.
showEvent
(event)¶ Reimplement Qwt method
-
CurvePlot.
showFullScreen
()¶
-
CurvePlot.
showMaximized
()¶
-
CurvePlot.
showMinimized
()¶
-
CurvePlot.
showNormal
()¶
-
CurvePlot.
show_items
(items=None, item_type=None)¶ Show items (if items is None, show all items)
-
CurvePlot.
signalsBlocked
() → bool¶
-
CurvePlot.
size
() → QSize¶
-
CurvePlot.
sizeHint
()¶ Preferred size
-
CurvePlot.
sizeIncrement
() → QSize¶
-
CurvePlot.
sizePolicy
() → QSizePolicy¶
-
CurvePlot.
stackUnder
(QWidget)¶
-
CurvePlot.
startTimer
(int) → int¶
-
CurvePlot.
statusTip
() → str¶
-
CurvePlot.
style
() → QStyle¶
-
CurvePlot.
styleSheet
() → str¶
-
CurvePlot.
testAttribute
(Qt.WidgetAttribute) → bool¶
-
CurvePlot.
thread
() → QThread¶
-
CurvePlot.
title
()¶ Returns: Title of the plot See also
-
CurvePlot.
titleLabel
()¶ Returns: Title label widget.
-
CurvePlot.
toolTip
() → str¶
-
CurvePlot.
topLevelWidget
() → QWidget¶
-
CurvePlot.
tr
(str, str disambiguation=None, int n=-1) → str¶
-
CurvePlot.
trUtf8
(str, str disambiguation=None, int n=-1) → str¶
-
CurvePlot.
transform
(axisId, value)¶ Transform a value into a coordinate in the plotting region
Parameters: - axisId (int) – Axis index
- value (fload) – Value
Returns: X or Y coordinate in the plotting region corresponding to the value.
-
CurvePlot.
underMouse
() → bool¶
-
CurvePlot.
ungrabGesture
(Qt.GestureType)¶
-
CurvePlot.
unselect_all
()¶ Unselect all selected items
-
CurvePlot.
unselect_item
(item)¶ Unselect item
-
CurvePlot.
unsetCursor
()¶
-
CurvePlot.
unsetLayoutDirection
()¶
-
CurvePlot.
unsetLocale
()¶
-
CurvePlot.
update
()¶ QWidget.update(QRect) QWidget.update(QRegion) QWidget.update(int, int, int, int)
-
CurvePlot.
updateAxes
()¶ Rebuild the axes scales
In case of autoscaling the boundaries of a scale are calculated from the bounding rectangles of all plot items, having the QwtPlotItem.AutoScale flag enabled (QwtScaleEngine.autoScale()). Then a scale division is calculated (QwtScaleEngine.didvideScale()) and assigned to scale widget.
When the scale boundaries have been assigned with setAxisScale() a scale division is calculated (QwtScaleEngine.didvideScale()) for this interval and assigned to the scale widget.
When the scale has been set explicitly by setAxisScaleDiv() the locally stored scale division gets assigned to the scale widget.
The scale widget indicates modifications by emitting a QwtScaleWidget.scaleDivChanged() signal.
updateAxes() is usually called by replot().
See also
setAxisAutoScale()
,setAxisScale()
,setAxisScaleDiv()
,replot()
,QwtPlotItem.boundingRect()
-
CurvePlot.
updateCanvasMargins
()¶ Update the canvas margins
Plot items might indicate, that they need some extra space at the borders of the canvas by the QwtPlotItem.Margins flag.
See also
getCanvasMarginsHint()
,QwtPlotItem.getCanvasMarginHint()
-
CurvePlot.
updateGeometry
()¶
-
CurvePlot.
updateLayout
()¶ Adjust plot content to its current size.
See also
resizeEvent()
-
CurvePlot.
updateLegend
(plotItem=None)¶ If plotItem is None, emit QwtPlot.legendDataChanged for all plot item. Otherwise, emit the signal for passed plot item.
Parameters: plotItem (qwt.plot.QwtPlotItem) – Plot item See also
QwtPlotItem.legendData()
,QwtPlot.legendDataChanged
-
CurvePlot.
updateLegendItems
(plotItem, legendData)¶ Update all plot items interested in legend attributes
Call QwtPlotItem.updateLegend(), when the QwtPlotItem.LegendInterest flag is set.
Parameters: - plotItem (qwt.plot.QwtPlotItem) – Plot item
- legendData (list) – Entries to be displayed for the plot item ( usually 1 )
See also
QwtPlotItem.LegendInterest()
,QwtPlotItem.updateLegend()
-
CurvePlot.
update_all_axes_styles
()¶ Update all axes styles
-
CurvePlot.
update_axis_style
(axis_id)¶ Update axis style
-
CurvePlot.
updatesEnabled
() → bool¶
-
CurvePlot.
visibleRegion
() → QRegion¶
-
CurvePlot.
whatsThis
() → str¶
-
CurvePlot.
width
() → int¶
-
CurvePlot.
widthMM
() → int¶
-
CurvePlot.
winId
() → sip.voidptr¶
-
CurvePlot.
window
() → QWidget¶
-
CurvePlot.
windowFilePath
() → str¶
-
CurvePlot.
windowFlags
() → Qt.WindowFlags¶
-
CurvePlot.
windowIcon
() → QIcon¶
-
CurvePlot.
windowIconText
() → str¶
-
CurvePlot.
windowModality
() → Qt.WindowModality¶
-
CurvePlot.
windowOpacity
() → float¶
-
CurvePlot.
windowRole
() → str¶
-
CurvePlot.
windowState
() → Qt.WindowStates¶
-
CurvePlot.
windowTitle
() → str¶
-
CurvePlot.
windowType
() → Qt.WindowType¶
-
CurvePlot.
x
() → int¶
-
CurvePlot.
y
() → int¶
-
class
plotpy.curve.
CurveItem
(curveparam=None)[source]¶ Construct a curve plot item with the parameters curveparam (see
plotpy.styles.CurveParam
)-
set_resizable
(state)[source]¶ Set item resizable state (or any action triggered when moving an handle, e.g. rotation)
-
get_closest_coordinates
(x, y)[source]¶ Renvoie les coordonnées (x’,y’) du point le plus proche de (x,y) Méthode surchargée pour ErrorBarSignalCurve pour renvoyer les coordonnées des pointes des barres d’erreur
-
move_local_shape
(old_pos, new_pos)[source]¶ Translate the shape such that old_pos becomes new_pos in canvas coordinates
-
move_with_selection
(delta_x, delta_y)[source]¶ Translate the shape together with other selected items delta_x, delta_y: translation in plot coordinates
-
attach
(plot)¶ Attach the item to a plot.
This method will attach a QwtPlotItem to the QwtPlot argument. It will first detach the QwtPlotItem from any plot from a previous call to attach (if necessary). If a None argument is passed, it will detach from any QwtPlot it was attached to.
Parameters: plot (qwt.plot.QwtPlot) – Plot widget See also
-
baseline
()¶ Returns: Value of the baseline See also
-
brush
()¶ Returns: Brush used to fill the area between lines and the baseline See also
-
closePolyline
(painter, xMap, yMap, polygon)¶ Complete a polygon to be a closed polygon including the area between the original polygon and the baseline.
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- polygon (QPolygonF) – Polygon to be completed
-
closestPoint
(pos)¶ Find the closest curve point for a specific position
Parameters: pos (QPoint) – Position, where to look for the closest curve point Returns: tuple (index, dist) dist is the distance between the position and the closest curve point. index is the index of the closest curve point, or -1 if none can be found ( f.e when the curve has no points ).
Note
closestPoint() implements a dumb algorithm, that iterates over all points
-
data
()¶ Returns: the series data
-
dataRect
()¶ Returns: Bounding rectangle of the series or an invalid rectangle, when no series is stored See also
qwt.plot_series.QwtSeriesData.boundingRect()
-
dataSize
()¶ Returns: Number of samples of the series See also
setData()
,qwt.plot_series.QwtSeriesData.size()
-
defaultIcon
(brush, size)¶ Return a default icon from a brush
The default icon is a filled rectangle used in several derived classes as legendIcon().
Parameters: - brush (QBrush) – Fill brush
- size (QSizeF) – Icon size
Returns: A filled rectangle
-
detach
()¶ Detach the item from a plot.
This method detaches a QwtPlotItem from any QwtPlot it has been associated with.
See also
-
directPaint
(from_, to)¶ When observing a measurement while it is running, new points have to be added to an existing seriesItem. This method can be used to display them avoiding a complete redraw of the canvas.
Setting plot().canvas().setAttribute(Qt.WA_PaintOutsidePaintEvent, True) will result in faster painting, if the paint engine of the canvas widget supports this feature.
Parameters: - from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted
See also
-
draw
(painter, xMap, yMap, canvasRect)¶ Draw the complete series
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
-
drawCurve
(painter, style, xMap, yMap, canvasRect, from_, to)¶ Draw the line part (without symbols) of a curve interval.
Parameters: - painter (QPainter) – Painter
- style (int) – curve style, see QwtPlotCurve.CurveStyle
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
drawDots
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw dots
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
drawLines
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw lines
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
drawSeries
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw an interval of the curve
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
drawSteps
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw steps
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
drawSticks
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw sticks
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
drawSymbols
(painter, symbol, xMap, yMap, canvasRect, from_, to)¶ Draw symbols
Parameters: - painter (QPainter) – Painter
- symbol (qwt.symbol.QwtSymbol) – Curve symbol
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
fillCurve
(painter, xMap, yMap, canvasRect, polygon)¶ Fill the area between the curve and the baseline with the curve brush
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- polygon (QPolygonF) – Polygon - will be modified !
See also
-
getCanvasMarginHint
(xMap, yMap, canvasRect)¶ Calculate a hint for the canvas margin
When the QwtPlotItem::Margins flag is enabled the plot item indicates, that it needs some margins at the borders of the canvas. This is f.e. used by bar charts to reserve space for displaying the bars.
The margins are in target device coordinates ( pixels on screen )
Parameters: - xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas in painter coordinates
See also
QwtPlot.getCanvasMarginsHint()
,QwtPlot.updateCanvasMargins()
,
-
hide
()¶ Hide the item
-
init
()¶ Initialize internal members
-
isVisible
()¶ Returns: True if visible See also
-
itemChanged
()¶ Update the legend and call QwtPlot.autoRefresh() for the parent plot.
See also
QwtPlot.legendChanged()
,QwtPlot.autoRefresh()
-
legendChanged
()¶ Update the legend of the parent plot.
See also
QwtPlot.updateLegend()
,itemChanged()
-
legendData
()¶ Return all information, that is needed to represent the item on the legend
QwtLegendData is basically a list of QVariants that makes it possible to overload and reimplement legendData() to return almost any type of information, that is understood by the receiver that acts as the legend.
The default implementation returns one entry with the title() of the item and the legendIcon().
Returns: Data, that is needed to represent the item on the legend See also
title()
,legendIcon()
,qwt.legend.QwtLegend
-
legendIcon
(index, size)¶ Parameters: - index (int) – Index of the legend entry (ignored as there is only one)
- size (QSizeF) – Icon size
Returns: Icon representing the curve on the legend
See also
qwt.plot.QwtPlotItem.setLegendIconSize()
,qwt.plot.QwtPlotItem.legendData()
-
legendIconSize
()¶ Returns: Legend icon size See also
-
orientation
()¶ Returns: Orientation of the plot item See also
:py:meth`setOrientation()`
-
paintRect
(xMap, yMap)¶ Calculate the bounding paint rectangle of 2 maps
Parameters: - xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
Returns: Bounding paint rectangle of the scale maps, not normalized
-
pen
()¶ Returns: Pen used to draw the lines
-
plot
()¶ Returns: attached plot
-
rtti
()¶ Returns: QwtPlotItem.Rtti_PlotCurve
-
sample
(index)¶ Parameters: index (int) – Index Returns: Sample at position index
-
scaleRect
(xMap, yMap)¶ Calculate the bounding scale rectangle of 2 maps
Parameters: - xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
Returns: Bounding scale rect of the scale maps, not normalized
-
setAxes
(xAxis, yAxis)¶ Set X and Y axis
The item will painted according to the coordinates of its Axes.
Parameters: - xAxis (int) – X Axis (QwtPlot.xBottom or QwtPlot.xTop)
- yAxis (int) – Y Axis (QwtPlot.yLeft or QwtPlot.yRight)
See also
-
setAxis
(xAxis, yAxis)¶ Set X and Y axis
Warning
setAxis has been removed in Qwt6: please use
setAxes()
instead
-
setBaseline
(value)¶ Set the value of the baseline
The baseline is needed for filling the curve with a brush or the Sticks drawing style.
The interpretation of the baseline depends on the orientation(). With Qt.Horizontal, the baseline is interpreted as a horizontal line at y = baseline(), with Qt.Vertical, it is interpreted as a vertical line at x = baseline().
The default value is 0.0.
Parameters: value (float) – Value of the baseline See also
-
setBrush
(brush)¶ Assign a brush.
In case of brush.style() != QBrush.NoBrush and style() != QwtPlotCurve.Sticks the area between the curve and the baseline will be filled.
In case not brush.color().isValid() the area will be filled by pen.color(). The fill algorithm simply connects the first and the last curve point to the baseline. So the curve data has to be sorted (ascending or descending).
Parameters: brush (QBrush or QColor) – New brush See also
-
setCurveAttribute
(attribute, on=True)¶ Specify an attribute for drawing the curve
Supported curve attributes:
- QwtPlotCurve.Inverted
Parameters: - attribute (int) – Curve attribute
- on (bool) – On/Off
See also
-
setData
(*args, **kwargs)¶ Initialize data with a series data object or an array of points.
-
setData(data):
Parameters: data (qwt.plot_series.QwtSeriesData) – Series data (e.g. QwtPointArrayData instance)
-
setData(xData, yData, [size=None], [finite=True]):
Initialize data with x and y arrays.
This signature was removed in Qwt6 and is temporarily maintained here to ensure compatibility with Qwt5.
Same as setSamples(x, y, [size=None], [finite=True])
Parameters: - x – List/array of x values
- y – List/array of y values
- size (int or None) – size of xData and yData
- finite (bool) – if True, keep only finite array elements (remove all infinity and not a number values), otherwise do not filter array elements
See also
-
-
setItemAttribute
(attribute, on=True)¶ Toggle an item attribute
Parameters: - attribute (int) – Attribute type
- on (bool) – True/False
See also
-
setItemInterest
(interest, on=True)¶ Toggle an item interest
Parameters: - attribute (int) – Interest type
- on (bool) – True/False
See also
-
setLegendAttribute
(attribute, on=True)¶ Specify an attribute how to draw the legend icon
Legend attributes:
- QwtPlotCurve.LegendNoAttribute
- QwtPlotCurve.LegendShowLine
- QwtPlotCurve.LegendShowSymbol
- QwtPlotCurve.LegendShowBrush
Parameters: - attribute (int) – Legend attribute
- on (bool) – On/Off
See also
-
setLegendIconSize
(size)¶ Set the size of the legend icon
The default setting is 8x8 pixels
Parameters: size (QSize) – Size See also
-
setOrientation
(orientation)¶ Set the orientation of the item. Default is Qt.Horizontal.
The orientation() might be used in specific way by a plot item. F.e. a QwtPlotCurve uses it to identify how to display the curve int QwtPlotCurve.Steps or QwtPlotCurve.Sticks style.
See also
:py:meth`orientation()`
-
setPen
(*args)¶ Build and/or assign a pen, depending on the arguments.
-
setPen
(color, width, style) Build and assign a pen
In Qt5 the default pen width is 1.0 ( 0.0 in Qt4 ) what makes it non cosmetic (see QPen.isCosmetic()). This method signature has been introduced to hide this incompatibility.
Parameters: - color (QColor) – Pen color
- width (float) – Pen width
- style (Qt.PenStyle) – Pen style
-
setPen
(pen) Assign a pen
Parameters: pen (QPen) – New pen
-
-
setRectOfInterest
(rect)¶ Set a the “rect of interest” for the series
Parameters: rect (QRectF) – Rectangle of interest See also
qwt.plot_series.QwtSeriesData.setRectOfInterest()
-
setRenderHint
(hint, on=True)¶ Toggle a render hint
Parameters: - hint (int) – Render hint
- on (bool) – True/False
See also
-
setSamples
(*args, **kwargs)¶ Initialize data with an array of points.
-
setSamples(data):
Parameters: data (qwt.plot_series.QwtSeriesData) – Series data (e.g. QwtPointArrayData instance)
-
setSamples(samples):
Same as setData(QwtPointArrayData(samples))
Parameters: samples – List/array of points
-
setSamples(xData, yData, [size=None], [finite=True]):
Same as setData(QwtPointArrayData(xData, yData, [size=None]))
Parameters: - xData – List/array of x values
- yData – List/array of y values
- size (int or None) – size of xData and yData
- finite (bool) – if True, keep only finite array elements (remove all infinity and not a number values), otherwise do not filter array elements
See also
qwt.plot_series.QwtPointArrayData
-
-
setStyle
(style)¶ Set the curve’s drawing style
Valid curve styles:
- QwtPlotCurve.NoCurve
- QwtPlotCurve.Lines
- QwtPlotCurve.Sticks
- QwtPlotCurve.Steps
- QwtPlotCurve.Dots
- QwtPlotCurve.UserCurve
Parameters: style (int) – Curve style See also
-
setSymbol
(symbol)¶ Assign a symbol
The curve will take the ownership of the symbol, hence the previously set symbol will be delete by setting a new one. If symbol is None no symbol will be drawn.
Parameters: symbol (qwt.symbol.QwtSymbol) – Symbol See also
-
setTitle
(title)¶ Set a new title
Parameters: title (qwt.text.QwtText or str) – Title See also
-
setVisible
(on)¶ Show/Hide the item
Parameters: on (bool) – Show if True, otherwise hide See also
-
setXAxis
(axis)¶ Set the X axis
The item will painted according to the coordinates its Axes.
Parameters: axis (int) – X Axis (QwtPlot.xBottom or QwtPlot.xTop) See also
-
setYAxis
(axis)¶ Set the Y axis
The item will painted according to the coordinates its Axes.
Parameters: axis (int) – Y Axis (QwtPlot.yLeft or QwtPlot.yRight) See also
-
setZ
(z)¶ Set the z value
Plot items are painted in increasing z-order.
Parameters: z (float) – Z-value See also
z()
,QwtPlotDict.itemList()
-
show
()¶ Show the item
-
style
()¶ Returns: Style of the curve See also
-
swapData
(series)¶ Replace a series without deleting the previous one
Parameters: series (qwt.plot_series.QwtSeriesData) – New series Returns: Previously assigned series
-
symbol
()¶ Returns: Current symbol or None, when no symbol has been assigned See also
-
testCurveAttribute
(attribute)¶ Returns: True, if attribute is enabled See also
-
testItemAttribute
(attribute)¶ Test an item attribute
Parameters: attribute (int) – Attribute type Returns: True/False See also
-
testItemInterest
(interest)¶ Test an item interest
Parameters: attribute (int) – Interest type Returns: True/False See also
-
testLegendAttribute
(attribute)¶ Parameters: attribute (int) – Legend attribute Returns: True, when attribute is enabled See also
-
testRenderHint
(hint)¶ Test a render hint
Parameters: attribute (int) – Render hint Returns: True/False See also
-
title
()¶ Returns: Title of the item See also
-
updateLegend
(item, data)¶ Update the item to changes of the legend info
Plot items that want to display a legend ( not those, that want to be displayed on a legend ! ) will have to implement updateLegend().
updateLegend() is only called when the LegendInterest interest is enabled. The default implementation does nothing.
Parameters: - item (qwt.plot.QwtPlotItem) – Plot item to be displayed on a legend
- data (list) – Attributes how to display item on the legend
Note
Plot items, that want to be displayed on a legend need to enable the QwtPlotItem.Legend flag and to implement legendData() and legendIcon()
-
xAxis
()¶ Returns: xAxis
-
yAxis
()¶ Returns: yAxis
-
-
class
plotpy.curve.
ErrorBarCurveItem
(curveparam=None, errorbarparam=None)[source]¶ Construct an error-bar curve plot item with the parameters errorbarparam (see
plotpy.styles.ErrorBarParam
)-
get_data
()[source]¶ Return error-bar curve data: x, y, dx, dy
- x: NumPy array
- y: NumPy array
- dx: float or NumPy array (non-constant error bars)
- dy: float or NumPy array (non-constant error bars)
-
set_data
(x, y, dx=None, dy=None)[source]¶ Set error-bar curve data:
- x: NumPy array
- y: NumPy array
- dx: float or NumPy array (non-constant error bars)
- dy: float or NumPy array (non-constant error bars)
-
attach
(plot)¶ Attach the item to a plot.
This method will attach a QwtPlotItem to the QwtPlot argument. It will first detach the QwtPlotItem from any plot from a previous call to attach (if necessary). If a None argument is passed, it will detach from any QwtPlot it was attached to.
Parameters: plot (qwt.plot.QwtPlot) – Plot widget See also
-
baseline
()¶ Returns: Value of the baseline See also
-
brush
()¶ Returns: Brush used to fill the area between lines and the baseline See also
-
closePolyline
(painter, xMap, yMap, polygon)¶ Complete a polygon to be a closed polygon including the area between the original polygon and the baseline.
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- polygon (QPolygonF) – Polygon to be completed
-
closestPoint
(pos)¶ Find the closest curve point for a specific position
Parameters: pos (QPoint) – Position, where to look for the closest curve point Returns: tuple (index, dist) dist is the distance between the position and the closest curve point. index is the index of the closest curve point, or -1 if none can be found ( f.e when the curve has no points ).
Note
closestPoint() implements a dumb algorithm, that iterates over all points
-
data
()¶ Returns: the series data
-
dataRect
()¶ Returns: Bounding rectangle of the series or an invalid rectangle, when no series is stored See also
qwt.plot_series.QwtSeriesData.boundingRect()
-
dataSize
()¶ Returns: Number of samples of the series See also
setData()
,qwt.plot_series.QwtSeriesData.size()
-
defaultIcon
(brush, size)¶ Return a default icon from a brush
The default icon is a filled rectangle used in several derived classes as legendIcon().
Parameters: - brush (QBrush) – Fill brush
- size (QSizeF) – Icon size
Returns: A filled rectangle
-
detach
()¶ Detach the item from a plot.
This method detaches a QwtPlotItem from any QwtPlot it has been associated with.
See also
-
directPaint
(from_, to)¶ When observing a measurement while it is running, new points have to be added to an existing seriesItem. This method can be used to display them avoiding a complete redraw of the canvas.
Setting plot().canvas().setAttribute(Qt.WA_PaintOutsidePaintEvent, True) will result in faster painting, if the paint engine of the canvas widget supports this feature.
Parameters: - from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted
See also
-
drawCurve
(painter, style, xMap, yMap, canvasRect, from_, to)¶ Draw the line part (without symbols) of a curve interval.
Parameters: - painter (QPainter) – Painter
- style (int) – curve style, see QwtPlotCurve.CurveStyle
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
draw()
,drawDots()
,drawLines()
,drawSteps()
,drawSticks()
-
drawDots
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw dots
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
draw()
,drawSticks()
,drawSteps()
,drawLines()
-
drawLines
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw lines
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
draw()
,drawDots()
,drawSteps()
,drawSticks()
-
drawSeries
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw an interval of the curve
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
drawSteps
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw steps
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
draw()
,drawSticks()
,drawDots()
,drawLines()
-
drawSticks
(painter, xMap, yMap, canvasRect, from_, to)¶ Draw sticks
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
draw()
,drawDots()
,drawSteps()
,drawLines()
-
drawSymbols
(painter, symbol, xMap, yMap, canvasRect, from_, to)¶ Draw symbols
Parameters: - painter (QPainter) – Painter
- symbol (qwt.symbol.QwtSymbol) – Curve symbol
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- from (int) – Index of the first point to be painted
- to (int) – Index of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
-
fillCurve
(painter, xMap, yMap, canvasRect, polygon)¶ Fill the area between the curve and the baseline with the curve brush
Parameters: - painter (QPainter) – Painter
- xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas
- polygon (QPolygonF) – Polygon - will be modified !
See also
-
getCanvasMarginHint
(xMap, yMap, canvasRect)¶ Calculate a hint for the canvas margin
When the QwtPlotItem::Margins flag is enabled the plot item indicates, that it needs some margins at the borders of the canvas. This is f.e. used by bar charts to reserve space for displaying the bars.
The margins are in target device coordinates ( pixels on screen )
Parameters: - xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
- canvasRect (QRectF) – Contents rectangle of the canvas in painter coordinates
See also
QwtPlot.getCanvasMarginsHint()
,QwtPlot.updateCanvasMargins()
,
-
hide
()¶ Hide the item
-
hit_test
(pos)¶ Calcul de la distance d’un point à une courbe renvoie (dist, handle, inside)
-
init
()¶ Initialize internal members
-
isVisible
()¶ Returns: True if visible See also
-
is_empty
()¶ Return True if item data is empty
-
is_private
()¶ Return True if object is private
-
is_readonly
()¶ Return object readonly state
-
itemChanged
()¶ Update the legend and call QwtPlot.autoRefresh() for the parent plot.
See also
QwtPlot.legendChanged()
,QwtPlot.autoRefresh()
-
legendChanged
()¶ Update the legend of the parent plot.
See also
QwtPlot.updateLegend()
,itemChanged()
-
legendData
()¶ Return all information, that is needed to represent the item on the legend
QwtLegendData is basically a list of QVariants that makes it possible to overload and reimplement legendData() to return almost any type of information, that is understood by the receiver that acts as the legend.
The default implementation returns one entry with the title() of the item and the legendIcon().
Returns: Data, that is needed to represent the item on the legend See also
title()
,legendIcon()
,qwt.legend.QwtLegend
-
legendIcon
(index, size)¶ Parameters: - index (int) – Index of the legend entry (ignored as there is only one)
- size (QSizeF) – Icon size
Returns: Icon representing the curve on the legend
See also
qwt.plot.QwtPlotItem.setLegendIconSize()
,qwt.plot.QwtPlotItem.legendData()
-
legendIconSize
()¶ Returns: Legend icon size See also
-
move_local_shape
(old_pos, new_pos)¶ Translate the shape such that old_pos becomes new_pos in canvas coordinates
-
move_with_selection
(delta_x, delta_y)¶ Translate the shape together with other selected items delta_x, delta_y: translation in plot coordinates
-
orientation
()¶ Returns: Orientation of the plot item See also
:py:meth`setOrientation()`
-
paintRect
(xMap, yMap)¶ Calculate the bounding paint rectangle of 2 maps
Parameters: - xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
Returns: Bounding paint rectangle of the scale maps, not normalized
-
pen
()¶ Returns: Pen used to draw the lines
-
plot
()¶ Returns: attached plot
-
rtti
()¶ Returns: QwtPlotItem.Rtti_PlotCurve
-
sample
(index)¶ Parameters: index (int) – Index Returns: Sample at position index
-
scaleRect
(xMap, yMap)¶ Calculate the bounding scale rectangle of 2 maps
Parameters: - xMap (qwt.scale_map.QwtScaleMap) – Maps x-values into pixel coordinates.
- yMap (qwt.scale_map.QwtScaleMap) – Maps y-values into pixel coordinates.
Returns: Bounding scale rect of the scale maps, not normalized
-
select
()¶ Select item
-
setAxes
(xAxis, yAxis)¶ Set X and Y axis
The item will painted according to the coordinates of its Axes.
Parameters: - xAxis (int) – X Axis (QwtPlot.xBottom or QwtPlot.xTop)
- yAxis (int) – Y Axis (QwtPlot.yLeft or QwtPlot.yRight)
See also
-
setAxis
(xAxis, yAxis)¶ Set X and Y axis
Warning
setAxis has been removed in Qwt6: please use
setAxes()
instead
-
setBaseline
(value)¶ Set the value of the baseline
The baseline is needed for filling the curve with a brush or the Sticks drawing style.
The interpretation of the baseline depends on the orientation(). With Qt.Horizontal, the baseline is interpreted as a horizontal line at y = baseline(), with Qt.Vertical, it is interpreted as a vertical line at x = baseline().
The default value is 0.0.
Parameters: value (float) – Value of the baseline See also
-
setBrush
(brush)¶ Assign a brush.
In case of brush.style() != QBrush.NoBrush and style() != QwtPlotCurve.Sticks the area between the curve and the baseline will be filled.
In case not brush.color().isValid() the area will be filled by pen.color(). The fill algorithm simply connects the first and the last curve point to the baseline. So the curve data has to be sorted (ascending or descending).
Parameters: brush (QBrush or QColor) – New brush See also
-
setCurveAttribute
(attribute, on=True)¶ Specify an attribute for drawing the curve
Supported curve attributes:
- QwtPlotCurve.Inverted
Parameters: - attribute (int) – Curve attribute
- on (bool) – On/Off
See also
-
setData
(*args, **kwargs)¶ Initialize data with a series data object or an array of points.
-
setData(data):
Parameters: data (qwt.plot_series.QwtSeriesData) – Series data (e.g. QwtPointArrayData instance)
-
setData(xData, yData, [size=None], [finite=True]):
Initialize data with x and y arrays.
This signature was removed in Qwt6 and is temporarily maintained here to ensure compatibility with Qwt5.
Same as setSamples(x, y, [size=None], [finite=True])
Parameters: - x – List/array of x values
- y – List/array of y values
- size (int or None) – size of xData and yData
- finite (bool) – if True, keep only finite array elements (remove all infinity and not a number values), otherwise do not filter array elements
See also
-
-
setItemAttribute
(attribute, on=True)¶ Toggle an item attribute
Parameters: - attribute (int) – Attribute type
- on (bool) – True/False
See also
-
setItemInterest
(interest, on=True)¶ Toggle an item interest
Parameters: - attribute (int) – Interest type
- on (bool) – True/False
See also
-
setLegendAttribute
(attribute, on=True)¶ Specify an attribute how to draw the legend icon
Legend attributes:
- QwtPlotCurve.LegendNoAttribute
- QwtPlotCurve.LegendShowLine
- QwtPlotCurve.LegendShowSymbol
- QwtPlotCurve.LegendShowBrush
Parameters: - attribute (int) – Legend attribute
- on (bool) – On/Off
See also
-
setLegendIconSize
(size)¶ Set the size of the legend icon
The default setting is 8x8 pixels
Parameters: size (QSize) – Size See also
-
setOrientation
(orientation)¶ Set the orientation of the item. Default is Qt.Horizontal.
The orientation() might be used in specific way by a plot item. F.e. a QwtPlotCurve uses it to identify how to display the curve int QwtPlotCurve.Steps or QwtPlotCurve.Sticks style.
See also
:py:meth`orientation()`
-
setPen
(*args)¶ Build and/or assign a pen, depending on the arguments.
-
setPen
(color, width, style) Build and assign a pen
In Qt5 the default pen width is 1.0 ( 0.0 in Qt4 ) what makes it non cosmetic (see QPen.isCosmetic()). This method signature has been introduced to hide this incompatibility.
Parameters: - color (QColor) – Pen color
- width (float) – Pen width
- style (Qt.PenStyle) – Pen style
-
setPen
(pen) Assign a pen
Parameters: pen (QPen) – New pen
-
-
setRectOfInterest
(rect)¶ Set a the “rect of interest” for the series
Parameters: rect (QRectF) – Rectangle of interest See also
qwt.plot_series.QwtSeriesData.setRectOfInterest()
-
setRenderHint
(hint, on=True)¶ Toggle a render hint
Parameters: - hint (int) – Render hint
- on (bool) – True/False
See also
-
setSamples
(*args, **kwargs)¶ Initialize data with an array of points.
-
setSamples(data):
Parameters: data (qwt.plot_series.QwtSeriesData) – Series data (e.g. QwtPointArrayData instance)
-
setSamples(samples):
Same as setData(QwtPointArrayData(samples))
Parameters: samples – List/array of points
-
setSamples(xData, yData, [size=None], [finite=True]):
Same as setData(QwtPointArrayData(xData, yData, [size=None]))
Parameters: - xData – List/array of x values
- yData – List/array of y values
- size (int or None) – size of xData and yData
- finite (bool) – if True, keep only finite array elements (remove all infinity and not a number values), otherwise do not filter array elements
See also
qwt.plot_series.QwtPointArrayData
-
-
setStyle
(style)¶ Set the curve’s drawing style
Valid curve styles:
- QwtPlotCurve.NoCurve
- QwtPlotCurve.Lines
- QwtPlotCurve.Sticks
- QwtPlotCurve.Steps
- QwtPlotCurve.Dots
- QwtPlotCurve.UserCurve
Parameters: style (int) – Curve style See also
-
setSymbol
(symbol)¶ Assign a symbol
The curve will take the ownership of the symbol, hence the previously set symbol will be delete by setting a new one. If symbol is None no symbol will be drawn.
Parameters: symbol (qwt.symbol.QwtSymbol) – Symbol See also
-
setTitle
(title)¶ Set a new title
Parameters: title (qwt.text.QwtText or str) – Title See also
-
setVisible
(on)¶ Show/Hide the item
Parameters: on (bool) – Show if True, otherwise hide See also
-
setXAxis
(axis)¶ Set the X axis
The item will painted according to the coordinates its Axes.
Parameters: axis (int) – X Axis (QwtPlot.xBottom or QwtPlot.xTop) See also
-
setYAxis
(axis)¶ Set the Y axis
The item will painted according to the coordinates its Axes.
Parameters: axis (int) – Y Axis (QwtPlot.yLeft or QwtPlot.yRight) See also
-
setZ
(z)¶ Set the z value
Plot items are painted in increasing z-order.
Parameters: z (float) – Z-value See also
z()
,QwtPlotDict.itemList()
-
set_movable
(state)¶ Set item movable state
-
set_private
(state)¶ Set object as private
-
set_readonly
(state)¶ Set object readonly state
-
set_resizable
(state)¶ Set item resizable state (or any action triggered when moving an handle, e.g. rotation)
-
set_rotatable
(state)¶ Set item rotatable state
-
set_selectable
(state)¶ Set item selectable state
-
show
()¶ Show the item
-
style
()¶ Returns: Style of the curve See also
-
swapData
(series)¶ Replace a series without deleting the previous one
Parameters: series (qwt.plot_series.QwtSeriesData) – New series Returns: Previously assigned series
-
symbol
()¶ Returns: Current symbol or None, when no symbol has been assigned See also
-
testCurveAttribute
(attribute)¶ Returns: True, if attribute is enabled See also
-
testItemAttribute
(attribute)¶ Test an item attribute
Parameters: attribute (int) – Attribute type Returns: True/False See also
-
testItemInterest
(interest)¶ Test an item interest
Parameters: attribute (int) – Interest type Returns: True/False See also
-
testLegendAttribute
(attribute)¶ Parameters: attribute (int) – Legend attribute Returns: True, when attribute is enabled See also
-
testRenderHint
(hint)¶ Test a render hint
Parameters: attribute (int) – Render hint Returns: True/False See also
-
title
()¶ Returns: Title of the item See also
-
updateLegend
(item, data)¶ Update the item to changes of the legend info
Plot items that want to display a legend ( not those, that want to be displayed on a legend ! ) will have to implement updateLegend().
updateLegend() is only called when the LegendInterest interest is enabled. The default implementation does nothing.
Parameters: - item (qwt.plot.QwtPlotItem) – Plot item to be displayed on a legend
- data (list) – Attributes how to display item on the legend
Note
Plot items, that want to be displayed on a legend need to enable the QwtPlotItem.Legend flag and to implement legendData() and legendIcon()
-
xAxis
()¶ Returns: xAxis
-
yAxis
()¶ Returns: yAxis
-