MCPcopy Create free account
hub / github.com/alceal/plotlars / irregular

Method irregular

crates/plotlars-plotly/src/subplot_grid/mod.rs:108–118  ·  view source on GitHub ↗
(
        plots: Vec<(&dyn Plot, usize, usize, usize, usize)>,
        rows: Option<usize>,
        cols: Option<usize>,
        title: Option<Text>,
        h_gap: Option<f64>,
        v_gap: Option<

Source from the content-addressed store, hash-verified

106 /// ![Example](https://imgur.com/RvZwv3O.png)
107 #[builder(on(String, into), on(Text, into), finish_fn = build)]
108 pub fn irregular(
109 plots: Vec<(&dyn Plot, usize, usize, usize, usize)>,
110 rows: Option<usize>,
111 cols: Option<usize>,
112 title: Option<Text>,
113 h_gap: Option<f64>,
114 v_gap: Option<f64>,
115 dimensions: Option<&Dimensions>,
116 ) -> Self {
117 irregular::build_irregular(plots, rows, cols, title, h_gap, v_gap, dimensions)
118 }
119}
120
121// Manual PlotlyExt implementation for SubplotGrid.

Callers

nothing calls this directly

Calls 1

build_irregularFunction · 0.85

Tested by

no test coverage detected