Interface ChartObjectDefinition

State supplied by a host for an explicitly managed profile or source.

interface ChartObjectDefinition {
    dataStatus?: Readonly<IndicatorDataStatus>;
    kind: ChartObjectKind;
    locked?: boolean;
    name: string;
    paneIndex?: number;
    selected?: boolean;
    visible?: boolean;
}

Properties

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