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