Home > @i2analyze/notebook-sdk > chart > ChangeListener
chart.ChangeListener type
A callback function that handles chart data change events.
Signature:
type ChangeListener = (change: IChartChange & app.IChangeSource, applicationContents: app.IApplicationContents) => void;
References: IChartChange, app.IChangeSource, app.IApplicationContents
Introduced: version 1.0
Parameters
Parameter | Description |
---|---|
change | The change that took place on the chart and caused the callback to be invoked, and the source of the data change. |
applicationContents | The contents of the application, including the current chart. |