(
plots: Vec<&dyn Plot>,
rows: Option<usize>,
cols: Option<usize>,
title: Option<Text>,
h_gap: Option<f64>,
v_gap: Option<f64>,
dimensions: Opti
| 72 | ///  |
| 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 | /// |
nothing calls this directly
no test coverage detected