Ezel
  • Ezel
  • Basics
    • 1. Getting Started
    • 2. Concepts
      • Axis
    • 3. Attributes
    • 4. Cloud
  • Optimization
    • Style Customization
    • Data Lifetime
  • Grammar of Graphics
    • What is GoG
    • Interface
  • plot
    • PlainBox
    • Cartesian2
      • Basics
      • Geometry
    • Cartesian3
    • Text
    • NodeGraph
    • Grid
  • Git Repository
  • crates.io
  • docs.rs
  • pypi
  • Dev
    • Rendering
  • Coordinates
Powered by GitBook
On this page
  1. plot

Grid

PreviousNodeGraphNextRendering

Last updated 1 year ago

```rust
let mut grid = Grid::new();
grid.push(0, 0, plot1);
grid.push(0, 1, plot2);
grid.push(1, 0..2, plot3);
grid.draw_to_file("grid.png", (800, 600)).unwrap();
```