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. |
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.
- 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.
- 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.
- Scatter
Artist - A scatter plot rendering individual markers at (x, y) positions.
- Stem
Artist - A stem (lollipop) chart.
- Step
Artist - A step (staircase) chart.
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.