# PivotValueDisplayMode

> _Since v1.31.0_

Value display mode for pivot cells.
- `'raw'` — Show raw aggregated value (default)
- `'percentOfRow'` — Show as percentage of row total
- `'percentOfColumn'` — Show as percentage of column total
- `'percentOfGrandTotal'` — Show as percentage of grand total

```ts
type PivotValueDisplayMode = "raw" | "percentOfRow" | "percentOfColumn" | "percentOfGrandTotal"
```
