Home > @i2analyze/notebook-sdk > chart > IChartChangeMinor
chart.IChartChangeMinor interface
A minor change that has occurred to the data on a chart.
Signature:
interface IChartChangeMinor extends IChartChangeBase
Extends: IChartChangeBase
Introduced: version 1.0
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
elements | readonly |
{ readonly added: data.IReadOnlyCollection<visual.IElement>; readonly changed: data.IReadOnlyCollection<visual.IElement>; readonly removed: data.IReadOnlyCollection<visual.ElementId>; } | Gets the visual elements that changed. |
hasNameChanged | readonly |
boolean | Indicates whether the name of the chart changed. |
records | readonly |
{ readonly added: data.IReadOnlyCollection<records.IChartRecord>; readonly changed: data.IReadOnlyCollection<records.IChartRecord>; readonly removed: data.IReadOnlyCollection<records.AnalyzeRecordId>; } | Gets the records that changed. |
type | readonly |
'minor' | Gets the type of change (minor or major) made to the chart. |