# TablixSettings

## Content

# Type Alias: TablixSettings

```ts
type TablixSettings = object;
```

## Properties

### autoFillCorner?

```ts
optional autoFillCorner: boolean;
```

Specifies whether **Tablix Corner Cell** needs to be auto-filled when a field is dropped to **Tablix Row Group Cell**.\
For example, if **ProductName** field is dropped to **Row Group Cell**, **Product Name** value is set to **Corner Cell**

**Example:**
**Example:**
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
		rdlx: {
			reportItemsFeatures: {
				tablix: {
					autoFillCorner: false
				}
			}
		}
	});
**

#### Default

```ts
true
```

***

### canUseWizard?

```ts
optional canUseWizard: boolean;
```

Specifies whether Tablix Wizard is available for creating/editing Tablix

**Example:**
**Example:**
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
		rdlx: {
			reportItemsFeatures: {
				tablix: {
					canUseWizard: false
				}
			}
		}
	});
**

#### Default

```ts
true
```

***

### crossAggregates?

```ts
optional crossAggregates: boolean;
```

Specifies whether Tablix Wizard should hide cross-aggregates functionality

**Example:**
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
		rdlx: {
			reportItemsFeatures: {
				tablix: {
					crossAggregates: false
				}
			}
		}
	});
**

#### Default

```ts
true
```

***

### hideFrozenRowsColumns?

```ts
optional hideFrozenRowsColumns: boolean;
```

Specifies whether Hide FrozenRows/FrozenColumns properties from PropertyGrid and TablixWizard

**Example:**
**Example:**
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
		rdlx: {
			reportItemsFeatures: {
				tablix: {
					hideFrozenRowsColumns: true
				}
			}
		}
	});
**

#### Default

```ts
false
```
