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

Method regular

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

Source from the content-addressed store, hash-verified

72 /// ![Example](https://imgur.com/q0K7cyP.png)
73 #[builder(on(String, into), on(Text, into), finish_fn = build)]
74 pub fn regular(
75 plots: Vec<&dyn Plot>,
76 rows: Option<usize>,
77 cols: Option<usize>,
78 title: Option<Text>,
79 h_gap: Option<f64>,
80 v_gap: Option<f64>,
81 dimensions: Option<&Dimensions>,
82 ) -> Self {
83 regular::build_regular(plots, rows, cols, title, h_gap, v_gap, None, dimensions)
84 }
85
86 /// Creates an irregular grid subplot layout with custom row/column spanning.
87 ///

Callers

nothing calls this directly

Calls 1

build_regularFunction · 0.85

Tested by

no test coverage detected