Highcharts Dashboards
    Preparing search index...

    Configuration for a single option in editable options. If type is nested the options are rendered in the accordion menu, with rest of the options defined in the detailed options.

    interface Options {
        isStandalone?: boolean;
        name: string;
        nestedOptions?: NestedOptions[];
        propertyPath?: string[];
        selectOptions?: SelectOptions[];
        type: ElementType;
    }
    Index

    Properties

    isStandalone?: boolean

    Whether render it as a standalone element without a group.

    name: string

    Name of the option which will be displayed on the label.

    nestedOptions?: NestedOptions[]

    Detailed options that should be included in the accordion menu. Available for nested type.

    propertyPath?: string[]

    Relative path to the option, that should be changed in the component. eg: ['chart', 'title', 'text']

    selectOptions?: SelectOptions[]

    Items that should be included in the select element.

    Type of the editable element.