# AnimationStyle

> _Since v0.2.7_

Animation style for visual transitions.
- `'slide'`: Slide/transform animation (e.g., expand down, slide left/right)
- `'fade'`: Opacity fade animation
- `'flip'`: FLIP technique for position changes (First, Last, Invert, Play)
- `false`: No animation for this specific feature

```ts
type AnimationStyle = "slide" | "fade" | "flip" | false
```

#### Example

```typescript
// Plugin-specific animation styles
new TreePlugin({
  expandAnimation: 'slide', // Slide children down when expanding
});

new ReorderPlugin({
  animation: 'flip', // FLIP animation for column reordering
});
```

## See Also

- [`AnimationConfig`](/grid/api/core/interfaces/animationconfig.md) for grid-wide animation settings
- [`ExpandCollapseAnimation`](/grid/api/core/types/expandcollapseanimation.md) for expand/collapse-specific styles
