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
| Variant | Description |
|---|---|
Line | A polyline connecting (x, y) points. |
Scatter | Individual markers at (x, y) positions. |
Bar | Vertical or horizontal bars over categories. |
Histogram | Binned frequency distribution of a single series. |
FillBetween | Shaded region between two y-series. |
Pie | A pie chart showing proportional wedge slices. |
Violin | A violin plot showing kernel density estimates. |
Polar | A polar line or filled radar chart. |
Hexbin | Hexagonal binning plot showing point density. |
Waterfall | Cumulative positive/negative change bars. |
Structs§
- BarArtist
- A bar chart rendering vertical or horizontal bars over categorical data.
- BoxPlot
Artist - A box-and-whisker plot showing distribution summaries for one or more groups of data.
- Contour
Artist - A contour or filled contour plot over a 2D grid of z = f(x, y) values.
- Error
BarArtist - An error bar plot showing data points with uncertainty bars.
- Fill
Between Artist - A filled region between two y-series that share a common x-series.
- Heatmap
Artist - A heatmap showing a 2D grid of values mapped to colors via a colormap.
- Hexbin
Artist - A hexagonal binning (hexbin) plot that visualises point density on a 2D plane using a grid of flat-top hexagons.
- Hist
Artist - A histogram showing the frequency distribution of a single data series.
- Line
Artist - A line chart connecting a sequence of (x, y) data points.
- PieArtist
- A pie chart rendering proportional wedge slices from a set of sizes.
- Polar
Artist - A polar line or filled radar chart in polar coordinates.
- Scatter
Artist - A scatter plot rendering individual markers at (x, y) positions.
- Stem
Artist - A stem (lollipop) chart.
- Step
Artist - A step (staircase) chart.
- Violin
Artist - A violin plot showing the probability density of data distributions.
- Waterfall
Artist - 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.
- Error
BarData - The error data for one axis of an error bar plot.
- Step
Where - Controls where the horizontal segment of a step chart is placed.