ChartingOptions

Options for managing AG Grid's Charts

TypeScript
export interface

Properties

PropertyTypeDescriptionDefault
agGridContainerNamestringName of AG Grid Chart Container'AG Grid Window'
chartContainersChartContainer[]Locations to display saved Charts
externalChartingOptionsExternalChartingOptionsSet of properties for managing behaviour of external (i.e non AG Grid) charts
restoreChartsOnReadyboolean | 'all' | string[]Opens persisted AG Grid charts when AdapTable is ready. - true or 'all': all charts in Charting.ChartDefinitions - string[]: chart names to open (matches each definition's Name property)undefined (no charts opened automatically)
saveChartBehaviourSaveChartBehaviourBehaviour for saving Charts: auto, manual (via popup) or none'none'

Property Details

agGridContainerName

Name of AG Grid Chart Container

TypeScript
agGridContainerName?: string;
Default Value

'AG Grid Window'

Property Value

string

chartContainers

Locations to display saved Charts

TypeScript
chartContainers?: ChartContainer[];
Property Value

ChartContainer[]

externalChartingOptions

Set of properties for managing behaviour of external (i.e non AG Grid) charts

TypeScript
externalChartingOptions?: ExternalChartingOptions;
Default Value
Property Value

ExternalChartingOptions

restoreChartsOnReady

Opens persisted AG Grid charts when AdapTable is ready. - true or 'all': all charts in Charting.ChartDefinitions - string[]: chart names to open (matches each definition's Name property)

TypeScript
restoreChartsOnReady?: boolean | 'all' | string[];
Default Value

undefined (no charts opened automatically)

Property Value

boolean | 'all' | string[]

saveChartBehaviour

Behaviour for saving Charts: auto, manual (via popup) or none

TypeScript
saveChartBehaviour?: SaveChartBehaviour;
Default Value

'none'

Property Value

SaveChartBehaviour