Highcharts Dashboards
    Preparing search index...

    Options of the JSONConverter.

    interface JSONConverterOptions {
        beforeParse?: JSONBeforeParseCallbackFunction;
        columnIds?: string[] | ColumnIdsOptions;
        data?: JSONData;
        dateFormat?: string;
        decimalPoint?: string;
        firstRowAsNames: boolean;
        orientation: "columns" | "rows";
        parseDate?: ParseDateFunction;
    }

    Hierarchy

    • Options
      • JSONConverterOptions
    Index

    Properties

    columnIds?: string[] | ColumnIdsOptions
    data?: JSONData
    dateFormat?: string
    decimalPoint?: string
    firstRowAsNames: boolean
    orientation: "columns" | "rows"
    parseDate?: ParseDateFunction

    A function to parse string representations of dates into JavaScript timestamps. If not set, the default implementation will be used.