Bases: matplotlib.artist.Artist
A line - the line can have both a solid linestyle connecting all the vertices, and a marker at each vertex. Additionally, the drawing of the solid line is influenced by the drawstyle, e.g., one can create "stepped" lines in various styles.
Create a Line2D
instance with x and y data in sequences of xdata, ydata.
Additional keyword arguments are Line2D
properties:
Property | Description |
---|---|
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array | |
scalar or None | |
bool | |
| bool |
bool | |
Patch or (Path, Transform) or None | |
| color |
| |
| |
sequence of floats (on/off ink in points) or (None, None) | |
(2, N) array or two 1D arrays | |
| {'default', 'steps', 'steps-pre', 'steps-mid', 'steps-post'}, default: 'default' |
{'full', 'left', 'right', 'bottom', 'top', 'none'} | |
str | |
bool | |
object | |
| {'-', '--', '-.', ':', '', (offset, on-off-seq), ...} |
| float |
marker style string, | |
| color |
| float |
| color |
| color |
| float |
None or int or (int, int) or slice or list[int] or float or (float, float) or list[bool] | |
float or callable[[Artist, Event], tuple[bool, dict]] | |
float | |
bool | |
(scale: float, length: float, randomness: float) | |
bool or None | |
| |
| |
unknown | |
str | |
bool | |
1D array | |
1D array | |
float |
See set_linestyle()
for a description of the line styles, set_marker()
for a description of the markers, and set_drawstyle()
for a description of the draw styles.
Test whether mouseevent occurred on the line.
An event is deemed to have occurred "on" the line if it is less than self.pickradius
(default: 5 points) away from it. Use get_pickradius
or set_pickradius
to get or set the pick radius.
matplotlib.backend_bases.MouseEvent
Whether any values are within the radius.
A dictionary {'ind': pointlist}
, where pointlist is a list of points of the line that are within the pickradius around the event position.
TODO: sort returned indices by distance
Draw the Artist (and its children) using the given renderer.
This has no effect if the artist is not visible (Artist.get_visible
returns False).
RendererBase
subclass.
This method is overridden in the Artist subclasses.
Alias for get_antialiased
.
Return whether antialiased rendering is used.
Return the CapStyle
for dashed lines.
See also set_dash_capstyle
.
Return the JoinStyle
for dashed lines.
See also set_dash_joinstyle
.
Return the line data as an (xdata, ydata)
pair.
If orig is True, return the original data.
Return the drawstyle.
See also set_drawstyle
.
Alias for get_drawstyle
.
Return the marker fill style.
See also set_fillstyle
.
Return the linestyle.
See also set_linestyle
.
Return the linewidth in points.
See also set_linewidth
.
Alias for get_linestyle
.
Alias for get_linewidth
.
Return the line marker.
See also set_marker
.
Return the marker edge color.
See also set_markeredgecolor
.
Return the marker edge width in points.
See also set_markeredgewidth
.
Return the marker face color.
See also set_markerfacecolor
.
Return the alternate marker face color.
See also set_markerfacecoloralt
.
Return the marker size in points.
See also set_markersize
.
Return the markevery setting for marker subsampling.
See also set_markevery
.
Alias for get_markeredgecolor
.
Alias for get_markeredgewidth
.
Alias for get_markerfacecolor
.
Alias for get_markerfacecoloralt
.
Alias for get_markersize
.
Return the pick radius used for containment tests.
See contains
for more details.
Return the CapStyle
for solid lines.
See also set_solid_capstyle
.
Return the JoinStyle
for solid lines.
See also set_solid_joinstyle
.
Get the artist's bounding box in display space.
The bounding box' width and height are nonnegative.
Subclasses should override for inclusion in the bounding box "tight" calculation. Default is to return an empty bounding box at 0, 0.
Be careful when using this function, the results will not update if the artist window extent of the artist changes. The extent can change due to any changes in the transform stack, such as changing the axes limits, the figure size, or the canvas used (as is done when saving a figure). This can lead to unexpected behavior where interactive figures will look fine on the screen, but will save incorrectly.
Return the xdata.
If orig is True, return the original data, else the processed data.
Return the xy data as a Nx2 numpy array.
Return the ydata.
If orig is True, return the original data, else the processed data.
Return whether line has a dashed linestyle.
A custom linestyle is assumed to be dashed, we do not inspect the onoffseq
directly.
See also set_linestyle
.
Return the pick radius used for containment tests.
See contains
for more details.
Set multiple properties at once.
Supported properties are
Property | Description |
---|---|
a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array | |
scalar or None | |
bool | |
bool | |
bool | |
Patch or (Path, Transform) or None | |
color | |
| |
| |
sequence of floats (on/off ink in points) or (None, None) | |
(2, N) array or two 1D arrays | |
{'default', 'steps', 'steps-pre', 'steps-mid', 'steps-post'}, default: 'default' | |
{'full', 'left', 'right', 'bottom', 'top', 'none'} | |
str | |
bool | |
object | |
{'-', '--', '-.', ':', '', (offset, on-off-seq), ...} | |
float | |
marker style string, | |
color | |
float | |
color | |
color | |
float | |
None or int or (int, int) or slice or list[int] or float or (float, float) or list[bool] | |
float or callable[[Artist, Event], tuple[bool, dict]] | |
float | |
bool | |
(scale: float, length: float, randomness: float) | |
bool or None | |
| |
| |
unknown | |
str | |
bool | |
1D array | |
1D array | |
float |
Alias for set_antialiased
.
Set whether to use antialiased rendering.
Set the color of the line.
How to draw the end caps if the line is is_dashed
.
CapStyle
or {'butt', 'projecting', 'round'}
How to join segments of the line if it is_dashed
.
JoinStyle
or {'miter', 'round', 'bevel'}
Set the dash sequence.
The dash sequence is a sequence of floats of even length describing the length of dashes and spaces in points.
For example, (5, 2, 1, 2) describes a sequence of 5 point and 1 point dashes separated by 2 point spaces.
If seq is empty or (None, None)
, the linestyle will be set to solid.
Set the x and y data.
Set the drawstyle of the plot.
The drawstyle determines how the points are connected.
For 'default', the points are connected with straight lines.
The steps variants connect the points with step-like lines, i.e. horizontal lines with vertical steps. They differ in the location of the step:
For examples see Step Demo.
Alias for set_drawstyle
.
Set the marker fill style.
Possible values:
For examples see Marker fill styles.
Set the linestyle of the line.
Possible values:
A string:
linestyle | description |
---|---|
| solid line |
| dashed line |
| dash-dotted line |
| dotted line |
| draw nothing |
Alternatively a dash tuple of the following form can be provided:
(offset, onoffseq)
where onoffseq
is an even length tuple of on and off ink in points. See also set_dashes()
.
For examples see Linestyles.
Set the line width in points.
Line width, in points.
Alias for set_linestyle
.
Alias for set_linewidth
.
Set the line marker.
Path
or MarkerStyle
See markers
for full description of possible arguments.
Set the marker edge color.
Set the marker edge width in points.
Marker edge width, in points.
Set the marker face color.
Set the alternate marker face color.
Set the marker size in points.
Marker size, in points.
Set the markevery property to subsample the plot when using markers.
e.g., if every=5
, every 5-th marker will be plotted.
Which markers to plot.
every=None
: every point will be plotted.every=N
: every N-th marker will be plotted starting with marker 0.every=(start, N)
: every N-th marker, starting at index start, will be plotted.every=slice(start, end, N)
: every N-th marker, starting at index start, up to but not including index end, will be plotted.every=[i, j, m, ...]
: only markers at the given indices will be plotted.every=[True, False, True, ...]
: only positions that are True will be plotted. The list must have the same length as the data points.every=0.1
, (i.e. a float): markers will be spaced at approximately equal visual distances along the line; the distance along the line between markers is determined by multiplying the display-coordinate distance of the axes bounding-box diagonal by the value of every.every=(0.5, 0.1)
(i.e. a length-2 tuple of float): similar to every=0.1
but the first marker will be offset along the line by 0.5 multiplied by the display-coordinate-diagonal-distance along the line.For examples see Markevery Demo.
Setting markevery will still only draw markers at actual data points. While the float argument form aims for uniform visual spacing, it has to coerce from the ideal spacing to the nearest available data point. Depending on the number and distribution of data points, the result may still not look evenly spaced.
When using a start offset to specify the first marker, the offset will be from the first data point which may be different from the first the visible data point if the plot is zoomed in.
If zooming in on a plot when using float arguments then the actual data points that have markers will change because the distance between markers is always determined from the display-coordinates axes-bounding-box-diagonal regardless of the actual axes data limits.
Alias for set_markeredgecolor
.
Alias for set_markeredgewidth
.
Alias for set_markerfacecolor
.
Alias for set_markerfacecoloralt
.
Alias for set_markersize
.
Set the event picker details for the line.
If a float, it is used as the pick radius in points.
Set the pick radius used for containment tests.
See contains
for more details.
Pick radius, in points.
How to draw the end caps if the line is solid (not is_dashed
)
CapStyle
or {'butt', 'projecting', 'round'}
How to join segments if the line is solid (not is_dashed
).
JoinStyle
or {'miter', 'round', 'bevel'}
Set the data array for x.
Set the data array for y.
Copy properties from other to self.
matplotlib.lines.Line2D
© 2012–2021 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.5.1/api/_as_gen/matplotlib.lines.Line2D.html