Interface ChartObjectProvider

Actions are synchronous and offered only when their callback exists.

interface ChartObjectProvider {
    id: string;
    focus(): void;
    get(): null | ChartObjectDefinition;
    openSettings(): void;
    remove(): void;
    select(): void;
    setLocked(locked: boolean): void;
    setVisible(visible: boolean): void;
    subscribe(listener: () => void): () => void;
}

Properties

id: string

Methods