Skip to main content

Module plots

Module plots 

Source
Expand description

High-level plot type implementations

This module contains implementations of specific plot types like line plots, scatter plots, surfaces, etc.

Re-exports§

pub use area::AreaPlot;
pub use bar::BarChart;
pub use contour::ContourPlot;
pub use contour_fill::ContourFillPlot;
pub use errorbar::ErrorBar;
pub use figure::AxesMetadata;
pub use figure::Figure;
pub use figure::LegendEntry;
pub use figure::LegendStyle;
pub use figure::PlotElement;
pub use figure::PlotType;
pub use figure::TextStyle;
pub use line::LineGpuStyle;
pub use line::LineMarkerAppearance;
pub use line::LinePlot;
pub use line::LineStyle;
pub use line3::Line3Plot;
pub use pie::PieChart;
pub use quiver::QuiverPlot;
pub use scatter::MarkerStyle;
pub use scatter::ScatterPlot;
pub use scatter3::Scatter3Plot;
pub use stairs::StairsPlot;
pub use stem::StemPlot;
pub use surface::ColorMap;
pub use surface::ShadingMode;
pub use surface::SurfacePlot;
pub use surface::SurfaceStatistics;
pub use volume::*;

Modules§

area
Area plot implementation (filled area under curve)
bar
Bar chart implementation
contour
Contour plot implementation (iso-lines on a surface or base plane).
contour_fill
Filled contour plot implementation (triangles on the base plane).
errorbar
Error bar plot implementation.
figure
Figure management for multiple overlaid plots
line
Line plot implementation
line3
pie
Pie chart (2D) implementation using triangle fan
quiver
Quiver plot (vector field) implementation
scatter
Scatter plot implementation
scatter3
3D scatter plot implementation for MATLAB’s scatter3.
stairs
Stairs (step) plot implementation
stem
Stem plot implementation.
surface
3D surface plot implementation
volume
Volume rendering implementation