Interface IndicatorSettingsOptions

interface IndicatorSettingsOptions {
    instanceId?: string;
    tab?: IndicatorSettingsTab;
    onChange(inst: IndicatorApi): void;
    onClose(committed: boolean): void;
}

Properties

instanceId?: string

The instance to edit. Without it the dialog reads data-instance-id off the anchor (a legend row's gear), and failing that edits the chart's only indicator; with several and no id it declines with a toast.

Methods