# SelectionAxis

> _Since v2.8.0_

The axis of the active selection. Used in [`SelectionChangeDetail`](/grid/plugins/selection/interfaces/selectionchangedetail.md) to disambiguate
which axis (row vs. column vs. cell vs. range) was last touched. `'none'` when nothing
is selected.

```ts
type SelectionAxis = "cell" | "row" | "column" | "range" | "none"
```
