kuva 0.2.0

Scientific plotting library in Rust with various backends.
Documentation
pub mod band;
pub mod bar;
pub mod boxplot;
pub mod brick;
pub mod bump;
pub mod calendar;
pub mod candlestick;
pub mod chord;
pub mod clustermap;
pub mod colormap;
pub mod contour;
pub mod density;
pub mod diceplot;
pub mod dotplot;
pub mod ecdf;
pub mod forest;
pub mod funnel;
pub mod gantt;
pub mod heatmap;
pub mod hexbin;
pub mod histogram;
pub mod histogram2d;
pub mod horizon;
pub mod jointplot;
pub mod legend_plot;
pub mod line;
pub mod lollipop;
pub mod manhattan;
pub mod mosaic;
pub mod network;
pub mod parallel;
pub mod phylo;
pub mod pie;
pub mod plot3d;
pub mod polar;
pub mod pr;
pub mod pyramid;
pub mod qq;
pub mod radar;
pub mod raincloud;
pub mod ridgeline;
pub mod roc;
pub mod rose;
pub mod sankey;
pub mod scatter;
pub mod scatter3d;
pub mod series;
pub mod slope;
pub mod stacked_area;
pub mod streamgraph;
pub mod strip;
pub mod sunburst;
pub mod surface3d;
pub mod survival;
pub mod synteny;
pub mod ternary;
pub mod text;
pub mod treemap;
pub mod upset;
pub mod venn;
pub mod violin;
pub mod volcano;
pub mod waffle;
pub mod waterfall;

pub mod legend;

// pub mod types;

pub use band::BandPlot;
pub use bar::BarPlot;
pub use boxplot::{BoxGroup, BoxPlot};
pub use brick::{BrickAnchor, BrickPlot};
pub use bump::{BumpPlot, BumpSeries, BumpTieBreak, CurveStyle};
pub use calendar::{CalendarAgg, CalendarPeriod, CalendarPlot, WeekStart};
pub use candlestick::{CandleDataPoint, CandlestickPlot};
pub use chord::ChordPlot;
pub use clustermap::{AnnotationTrack, Clustermap, ClustermapNorm};
pub use colormap::ColorMap;
pub use contour::ContourPlot;
pub use density::DensityPlot;
pub use diceplot::{DicePlot, DicePoint};
pub use dotplot::{DotPlot, DotPoint};
pub use ecdf::{EcdfGroup, EcdfPlot};
pub use forest::{ForestPlot, ForestRow};
pub use funnel::{FunnelColorMode, FunnelOrientation, FunnelPlot, FunnelStage};
pub use gantt::{GanttDisplayRow, GanttPlot, GanttTask};
pub use heatmap::Heatmap;
pub use hexbin::{HexbinPlot, ZReduce};
pub use histogram::Histogram;
pub use histogram2d::Histogram2D;
pub use horizon::{HorizonPlot, HorizonSeries};
pub use jointplot::{JointGroup, JointPlot, MarginalType};
pub use legend_plot::LegendPlot;
pub use line::{LinePlot, LineStyle};
pub use lollipop::{LollipopDomain, LollipopPlot, LollipopPoint};
pub use manhattan::{ChromSpan, GenomeBuild, ManhattanPlot, ManhattanPoint};
pub use mosaic::{MosaicCell, MosaicPlot};
pub use network::{NetworkEdge, NetworkLayout, NetworkNode, NetworkPlot, NodeShape};
pub use parallel::{ParallelPlot, ParallelRow};
pub use phylo::{PhyloNode, PhyloTree, TreeBranchStyle, TreeOrientation};
pub use pie::{PieLabelPosition, PiePlot, PieSlice};
pub use plot3d::{Box3DConfig, DataRanges3D, View3D};
pub use polar::{PolarMode, PolarPlot, PolarSeries};
pub use pr::{PrGroup, PrPlot};
pub use pyramid::{PopulationPyramid, PyramidMode, PyramidSeries};
pub use qq::{QQGroup, QQMode, QQPlot};
pub use radar::{RadarPlot, RadarReference, RadarSeries};
pub use raincloud::{RaincloudGroup, RaincloudPlot};
pub use ridgeline::{RidgelineGroup, RidgelinePlot};
pub use roc::{RocGroup, RocPlot};
pub use rose::{RoseEncoding, RoseMode, RosePlot, RoseSeries};
pub use sankey::{
    SankeyAlluvium, SankeyLink, SankeyLinkColor, SankeyNode, SankeyNodeColoring, SankeyNodeOrder,
    SankeyPlot,
};
pub use scatter::{MarkerShape, ScatterPlot};
pub use scatter3d::{Scatter3DPlot, Scatter3DPoint};
pub use series::{SeriesPlot, SeriesStyle};
pub use slope::{SlopePlot, SlopePoint, SlopeValueFormat};
pub use stacked_area::StackedAreaPlot;
pub use streamgraph::{StreamBaseline, StreamOrder, StreamgraphPlot};
pub use strip::{StripGroup, StripPlot, StripStyle};
pub use sunburst::{SunburstColorMode, SunburstPlot};
pub use surface3d::Surface3DPlot;
pub use survival::{KMGroup, SurvivalPlot};
pub use synteny::{Strand, SyntenyBlock, SyntenyPlot, SyntenySequence};
pub use ternary::{TernaryPlot, TernaryPoint};
pub use text::{TextAlign, TextPlot};
pub use treemap::{TreemapColorMode, TreemapLayout, TreemapNode, TreemapPlot};
pub use upset::{UpSetIntersection, UpSetPlot, UpSetSort};
pub use venn::{VennOverlap, VennPlot, VennSet};
pub use violin::{ViolinGroup, ViolinPlot};
pub use volcano::{LabelStyle, VolcanoPlot, VolcanoPoint};
pub use waffle::{CellShape, FillOrder, WaffleCategory, WafflePlot};
pub use waterfall::{WaterfallBar, WaterfallKind, WaterfallPlot};

pub use legend::{Legend, LegendEntry, LegendGroup, LegendPosition, LegendShape};