Graph::without_grid

fn without_grid(
    self: Graph
) -> Graph

Removes the grid from the graph.

Examples

Before:

graph()
    .add(allocations())
    .save();

After:

graph()
    .add(allocations())
    .without_grid()
    .save();