Interface ChartObjectSnapshot

One immutable row in a chart's object inventory.

interface ChartObjectSnapshot {
    capabilities: ChartObjectCapabilities;
    dataStatus?: Readonly<IndicatorDataStatus>;
    id: string;
    kind: ChartObjectKind;
    locked?: boolean;
    name: string;
    paneIndex: number;
    selected: boolean;
    sourceId: string;
    visible: boolean;
}

Properties

dataStatus?: Readonly<IndicatorDataStatus>
id: string
locked?: boolean
name: string
paneIndex: number
selected: boolean
sourceId: string
visible: boolean