Highcharts Grid
    Preparing search index...

    Options to control the select renderer content.

    interface SelectRendererOptions {
        attributes?: SelectAttributes;
        disabled?: boolean;
        options: SelectOption[];
        type: "select";
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributes?: SelectAttributes

    Attributes to control the select input.

    disabled?: boolean

    Whether the select input is disabled.

    options: SelectOption[]

    The options available in the select input.

    type: "select"

    The cell content type.

    Can be one of the following: 'text', 'checkbox', 'select', 'textInput', 'dateInput', 'dateTimeInput', 'timeInput', 'numberInput', 'sparkline'.

    You can also create your own custom renderer by extending the CellRenderer class and registering it in the CellRendererTypeRegistry.

    'text'