# HoverTableAnimationOptions

## Content

# Interface: HoverTableAnimationOptions

## Properties

### backgroundColor?

```ts
optional backgroundColor?: string;
```

Specifies the background color on hover over the table and tablix row. Default value: 'LightGray'.

#### Example

```ts
backgroundColor: 'LightGray'
```

***

### enabled?

```ts
optional enabled?: boolean;
```

Enable hover table and tablix animation. Default value: false.

#### Example

```ts
enabled: true
```

***

### textColor?

```ts
optional textColor?: string;
```

Specifies the text color on hover over the table and tablix row. Default value: `undefined`.\
If the value is `undefined`, text color of row cells remains unchanged on hover.

#### Example

```ts
textColor: 'DarkGray'
```
