Highcharts Dashboards
    Preparing search index...

    Grid component highlight sync options.

    Example:

    {
    enabled: true,
    autoScroll: true
    }
    interface GridHighlightSyncOptions {
        autoScroll?: boolean;
        emitter?: boolean | EmitterFunction | null;
        enabled?: boolean;
        group?: string;
        handler?: boolean | Function | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoScroll?: boolean

    Whether to scroll the data grid to the highlighted row automatically.

    false
    
    emitter?: boolean | EmitterFunction | null

    Responsible for communicating to the component group that the action has been triggered on the component.

    If true or undefined the default emitter will be used, if false or null it will be disabled

    enabled?: boolean

    Whether the sync should be enabled.

    false
    
    group?: string

    The group in which components sharing the same connector should be synced.

    If null or undefined the component will be synced with all components with the same connector.

    Try it:

    Sync groups for the same connector

    undefined
    
    handler?: boolean | Function | null

    Responsible for handling incoming action from the synced component group.

    If true or undefined the default handler will be used, if false or null it will be disabled