# OverlayPosition

> _Since v0.13.0_

Position of the overlay panel relative to its anchor cell.

- `'below'` — panel appears below the cell, left-aligned (default)
- `'above'` — panel appears above the cell, left-aligned
- `'below-right'` — panel appears below the cell, right-aligned
- `'over-top-left'` — panel top-left corner aligns with cell top-left corner (opens downward)
- `'over-bottom-left'` — panel bottom-left corner aligns with cell bottom-left corner (opens upward)

```ts
type OverlayPosition = "below" | "above" | "below-right" | "over-top-left" | "over-bottom-left"
```
