On this page
matplotlib.pyplot.broken_barh
matplotlib.pyplot.broken_barh(xranges, yrange, hold=None, data=None, **kwargs)[source]-
Plot a horizontal sequence of rectangles.
A rectangle is drawn for each element of xranges. All rectangles have the same vertical position and size defined by yrange.
This is a convenience function for instantiating a
BrokenBarHCollection, adding it to the axes and autoscaling the view.Parameters: -
xranges : sequence of tuples (xmin, xwidth) -
The x-positions and extends of the rectangles. For each tuple (xmin, xwidth) a rectangle is drawn from xmin to xmin + xwidth.
-
yranges : (ymin, ymax) -
The y-position and extend for all the rectangles.
Returns: -
collection : A BrokenBarHCollection
Other Parameters: -
**kwargs : BrokenBarHCollection properties -
Each kwarg can be either a single argument applying to all rectangles, e.g.:
facecolors='black'or a sequence of arguments over which is cycled, e.g.:
facecolors=('black', 'blue')would create interleaving black and blue rectangles.
Supported keywords:
Property Description agg_filtera filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array alphafloat or None animatedbool antialiasedor antialiasedsBoolean or sequence of booleans arrayndarray capstyleunknown clima length 2 sequence of floats; may be overridden in methods that have vminandvmaxkwargs.clip_boxa Bboxinstanceclip_onbool clip_path[( Path,Transform) |Patch| None]cmapa colormap or registered colormap name colormatplotlib color arg or sequence of rgba tuples containsa callable function edgecoloror edgecolorsmatplotlib color spec or sequence of specs facecoloror facecolorsmatplotlib color spec or sequence of specs figurea Figureinstancegidan id string hatch[ '/' | '\' | '|' | '-' | '+' | 'x' | 'o' | 'O' | '.' | '*' ] joinstyleunknown labelobject linestyleor dashes or linestyles['solid' | 'dashed', 'dashdot', 'dotted' | (offset, on-off-dash-seq) | '-'|'--'|'-.'|':'|'None'|' '|'']linewidthor linewidths or lwfloat or sequence of floats normNormalizeoffset_position[ 'screen' | 'data' ] offsetsfloat or sequence of floats path_effectsAbstractPathEffectpicker[None | bool | float | callable] pickradiusfloat distance in points rasterizedbool or None sketch_params(scale: float, length: float, randomness: float) snapbool or None transformTransformurla url string urlsList[str] or None visiblebool zorderfloat
Notes
Note
In addition to the above described arguments, this function can take a data keyword argument. If such a data argument is given, the following arguments are replaced by data[<arg>]:
- All positional and all keyword arguments.
-
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/2.2.3/api/_as_gen/matplotlib.pyplot.broken_barh.html