Skip to main content

Module artist

Module artist 

Source
Expand description

Artist types – data + styling for each visual chart element.

Artists are the data-carrying objects stored in Axes. Each artist type holds the data-space geometry and styling for one visual element. When the figure is rendered, the renderer iterates over the artist list and draws each one according to its variant.

§Variants

VariantDescription
LineA polyline connecting (x, y) points.
ScatterIndividual markers at (x, y) positions.
BarVertical or horizontal bars over categories.
HistogramBinned frequency distribution of a single series.
FillBetweenShaded region between two y-series.
PieA pie chart showing proportional wedge slices.
ViolinA violin plot showing kernel density estimates.
PolarA polar line or filled radar chart.
HexbinHexagonal binning plot showing point density.
WaterfallCumulative positive/negative change bars.

Structs§

BarArtist
A bar chart rendering vertical or horizontal bars over categorical data.
BoxPlotArtist
A box-and-whisker plot showing distribution summaries for one or more groups of data.
ContourArtist
A contour or filled contour plot over a 2D grid of z = f(x, y) values.
ErrorBarArtist
An error bar plot showing data points with uncertainty bars.
FillBetweenArtist
A filled region between two y-series that share a common x-series.
HeatmapArtist
A heatmap showing a 2D grid of values mapped to colors via a colormap.
HexbinArtist
A hexagonal binning (hexbin) plot that visualises point density on a 2D plane using a grid of flat-top hexagons.
HistArtist
A histogram showing the frequency distribution of a single data series.
LineArtist
A line chart connecting a sequence of (x, y) data points.
PieArtist
A pie chart rendering proportional wedge slices from a set of sizes.
PolarArtist
A polar line or filled radar chart in polar coordinates.
ScatterArtist
A scatter plot rendering individual markers at (x, y) positions.
StemArtist
A stem (lollipop) chart.
StepArtist
A step (staircase) chart.
ViolinArtist
A violin plot showing the probability density of data distributions.
WaterfallArtist
A waterfall chart showing how an initial value is affected by a series of positive and negative changes.

Enums§

Artist
A visual element drawn on an axes.
ErrorBarData
The error data for one axis of an error bar plot.
StepWhere
Controls where the horizontal segment of a step chart is placed.