# RowAnimationType

> _Since v1.3.0_

Type of row animation.
- `'change'`: Flash highlight when row data changes (e.g., after cell edit)
- `'insert'`: Slide-in animation for newly added rows
- `'remove'`: Fade-out animation for rows being removed

```ts
type RowAnimationType = "change" | "insert" | "remove"
```

#### Example

```typescript
// Internal usage - row animation is triggered automatically:
// - 'change' after cell-commit event
// - 'insert' when rows are added to the grid
// - 'remove' when rows are deleted

// The animation respects AnimationConfig.mode
grid.gridConfig = {
  animation: { mode: 'on', duration: 300 },
};
```

## See Also

- [`AnimationConfig`](/grid/api/core/interfaces/animationconfig.md) for animation configuration
