Highcharts Grid
    Preparing search index...

    Attributes to control the text input.

    interface TextInputAttributes {
        maxlength?: number;
        minlength?: number;
        pattern?: string;
        placeholder?: string;
        size?: number;
    }
    Index

    Properties

    maxlength?: number

    Maximum number of characters allowed in the input.

    minlength?: number

    Minimum number of characters allowed in the input.

    pattern?: string

    Regular expression pattern used for native input validation.

    placeholder?: string

    Placeholder text shown when the input is empty.

    size?: number

    Visible width of the input in characters.