# TooltipConfig

> _Since v1.28.0_

Configuration for the Tooltip plugin.

#### Example

```typescript
// Enable both header and cell tooltips (default)
new TooltipPlugin()

// Header tooltips only
new TooltipPlugin({ cell: false })

// Disable all tooltips temporarily
new TooltipPlugin({ header: false, cell: false })
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `header?` | <code>boolean</code> | Enable automatic header tooltips when text overflows. Individual columns can override with `headerTooltip`. |
| `cell?` | <code>boolean</code> | Enable automatic cell tooltips when text overflows. Individual columns can override with `cellTooltip`. |

### Property Details

#### header

**Default:** `true`

---

#### cell

**Default:** `true`

---
