InfiniteLine#
- class pyqtgraph.InfiniteLine(
- pos=None,
- angle=90,
- pen=None,
- movable=False,
- bounds=None,
- hoverPen=None,
- label=None,
- labelOpts=None,
- span=(0, 1),
- markers=None,
- name=None,
Bases:
GraphicsObject
Displays a line of infinite length. This line may be dragged to indicate a position in data coordinates.
Signals:
sigDragged(self)
sigPositionChangeFinished(self)
sigPositionChanged(self)
sigClicked(self, ev)
- __init__(
- pos=None,
- angle=90,
- pen=None,
- movable=False,
- bounds=None,
- hoverPen=None,
- label=None,
- labelOpts=None,
- span=(0, 1),
- markers=None,
- name=None,
Arguments:
pos
Position of the line. This can be a QPointF or a single value for vertical/horizontal lines.
angle
Angle of line in degrees. 0 is horizontal, 90 is vertical.
pen
Pen to use when drawing line. Can be any arguments that are valid for
mkPen
. Default pen is transparent yellow.hoverPen
Pen to use when the mouse cursor hovers over the line. Only used when movable=True.
movable
If True, the line can be dragged to a new position by the user.
bounds
Optional [min, max] bounding values. Bounds are only valid if the line is vertical or horizontal.
hoverPen
Pen to use when drawing line when hovering over it. Can be any arguments that are valid for
mkPen
. Default pen is red.label
Text to be displayed in a label attached to the line, or None to show no label (default is None). May optionally include formatting strings to display the line value.
labelOpts
A dict of keyword arguments to use when constructing the text label. See
InfLineLabel
.span
Optional tuple (min, max) giving the range over the view to draw the line. For example, with a vertical line, use span=(0.5, 1) to draw only on the top half of the view.
markers
List of (marker, position, size) tuples, one per marker to display on the line. See the addMarker method.
name
Name of the item
- addMarker(
- marker,
- position=0.5,
- size=10.0,
Add a marker to be displayed on the line.
Arguments
marker
String indicating the style of marker to add:
'<|'
,'|>'
,'>|'
,'|<'
,'<|>'
,'>|<'
,'^'
,'v'
,'o'
position
Position (0.0-1.0) along the visible extent of the line to place the marker. Default is 0.5.
size
Size of the marker in pixels. Default is 10.0.
- setAngle(
- angle,
Takes angle argument in degrees. 0 is horizontal; 90 is vertical.
Note that the use of value() and setValue() changes if the line is not vertical or horizontal.
- setHoverPen(
- *args,
- **kwargs,
Set the pen for drawing the line while the mouse hovers over it. Allowable arguments are any that are valid for
mkPen
.If the line is not movable, then hovering is also disabled.
Added in version 0.9.9.
- setPen(
- *args,
- **kwargs,
Set the pen for drawing the line. Allowable arguments are any that are valid for
mkPen
.
- setValue(
- v,
Set the position of the line. If line is horizontal or vertical, v can be a single value. Otherwise, a 2D coordinate must be specified (list, tuple and QPointF are all acceptable).
- class pyqtgraph.InfLineLabel(
- line,
- text='',
- movable=False,
- position=0.5,
- anchors=None,
- **kwds,
A TextItem that attaches itself to an InfiniteLine.
This class extends TextItem with the following features:
Automatically positions adjacent to the line at a fixed position along the line and within the view box.
Automatically reformats text when the line value has changed.
Can optionally be dragged to change its location along the line.
Optionally aligns to its parent line.
Arguments:
line
The InfiniteLine to which this label will be attached.
text
String to display in the label. May contain a {value} formatting string to display the current value of the line.
movable
Bool; if True, then the label can be dragged along the line.
position
Relative position (0.0-1.0) within the view to position the label along the line.
anchors
List of (x,y) pairs giving the text anchor positions that should be used when the line is moved to one side of the view or the other. This allows text to switch to the opposite side of the line as it approaches the edge of the view. These are automatically selected for some common cases, but may be specified if the default values give unexpected results.
All extra keyword arguments are passed to TextItem. A particularly useful option here is to use rotateAxis=(1, 0), which will cause the text to be automatically rotated parallel to the line.