Expand description
Express API: one-liner chart creation functions.
Structs§
- Area
Builder - Builder for area charts.
- BarBuilder
- Builder for bar charts.
- BoxPlot
Builder - Builder for box plots.
- Heatmap
Builder - Builder for heatmap charts.
- Histogram
Builder - Builder for histograms.
- Line
Builder - Builder for line charts.
- Multi
BarBuilder - Builder for multi-series bar charts (stacked or grouped).
- PieBuilder
- Builder for pie/donut charts.
- Scatter
Builder - Builder for scatter plots.
- Treemap
Builder - Builder for treemap charts.
Functions§
- area
- Create an area chart.
- bar
- Create a bar chart.
- boxplot
- Create a box plot.
- grouped_
bar - Create a grouped (dodged) bar chart.
- heatmap
- Create a heatmap from a 2D matrix (takes ownership).
- heatmap_
ref - Create a heatmap from a borrowed 2D slice.
- histogram
- Create a histogram from raw values.
- line
- Create a line chart.
- pie
Deprecated - Create a pie chart.
- pie_
labeled - Create a pie chart with consistent (labels, values) parameter order.
- scatter
- Create a scatter plot.
- stacked_
bar - Create a stacked bar chart.
- treemap
- Create a treemap chart.
Type Aliases§
- Grouped
BarBuilder - Backward-compatible alias for grouped bar builder.
- Stacked
BarBuilder - Backward-compatible alias for stacked bar builder.