# `Lotus.Storage.DashboardCard.Layout`
[🔗](https://github.com/typhoonworks/lotus/blob/v0.16.4/lib/lotus/storage/dashboard_card.ex#L66)

Embedded schema for card layout in the dashboard grid.

The dashboard uses a 12-column grid system:
- `x` - Column position (0-11)
- `y` - Row position (0+)
- `w` - Width in columns (1-12)
- `h` - Height in rows (minimum 1)

# `t`

```elixir
@type t() :: %Lotus.Storage.DashboardCard.Layout{
  h: pos_integer(),
  w: pos_integer(),
  x: non_neg_integer(),
  y: non_neg_integer()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
