# ChartSettings

## Content

# Type Alias: ChartSettings

```ts
type ChartSettings = object;
```

## Properties

### canUseWizard?

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

Specifies whether Chart Wizard is available for creating Chart

#### Examples

```javascript
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				canUseWizard: false
			}
		}
	}
});
```

```javascript
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				canUseWizard: false
			}
		}
	}
});
```

```typescript
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				canUseWizard: false
			}
		}
	}
});
```

#### Default

```ts
true
```

***

### hiddenEncodings?

```ts
optional hiddenEncodings: DvChartEncodingType[];
```

Excludes given encodings from encoding panel in chart adorner

#### Examples

```javascript
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				hiddenEncodings: ['Color', 'Text']
			}
		}
	}
});
```

```javascript
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				hiddenEncodings: ['Color', 'Text']
			}
		}
	}
});
```

```typescript
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				hiddenEncodings: ['Color', 'Text']
			}
		}
	}
});
```

***

### plotChartTypes?

```ts
optional plotChartTypes: DvChartPlotType[];
```

Limits the list of plot chart types available for creation.\
By default all plot chart types supported by ActiveReports are available.

#### Examples

```javascript
// ESM usage
import { arWebDesigner } from './web-designer.js';
arWebDesigner.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				plotChartTypes: ['Column', 'Bar', 'Line']
			}
		}
	}
});
```

```javascript
// UMD usage
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				plotChartTypes: ['Column', 'Bar', 'Line']
			}
		}
	}
});
```

```typescript
GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
	rdlx: {
		reportItemsFeatures: {
			chart: {
				plotChartTypes: ['Column', 'Bar', 'Line']
			}
		}
	}
});
```
