Layout#
Grid#
The Grid class is a standalone layout container for arranging multiple charts
in a rows x cols grid. Users create instances via gufo.grid(), never by
instantiating Grid directly.
Entry point#
g = gufo.grid(rows=2, cols=2, figsize=(14, 10))
Key methods#
Grid.__setitem__(idx, panel_chart)— assign aChartto a grid cellGrid.title(text)— set a super-title above all panelsGrid.theme(name_or_theme)— set a grid-level themeGrid.apply(func)— callfunc(figure, axes_2d_array)after renderingGrid.show()— render and display the gridGrid.save(path, *, dpi=150)— render and save to file