Angular ChartsCreate/Update
Learn about creating and updating charts in more detail.
AgChartOptions
are supplied to the AG Charts component, and mutations of the options trigger an update of the chart configuration.
See the Options Reference for more detail about the AgChartOptions
structure.
The following example demonstrates both create and update cases:
- Definition of an
options
object used to create the initial chart state. - Buttons that invoke mutations of the
options
and trigger update of the chart state.
AgChart
exposes an updateDelta()
static method to allow partial updates to an existing charts configuration:
updateDelta()
should not be normally used with the AG Charts component; framework change detection and updates
to the chart apply automatically after an options change.
However when using Integrated Charts it may be necessary to use this API to perform chart updates in Grid callbacks.
Charts are automatically destroyed when the AG Charts component is removed from the DOM.