MAIDR JavaScript API
    Preparing search index...

    One item of series.data(). Which value fields are present depends on the series type. series.data() holds only the rows the chart plots, never whitespace (an item carrying only time).

    interface LwcDataItem {
        time: LwcTime;
        value?: number;
        open?: number;
        high?: number;
        low?: number;
        close?: number;
    }
    Index

    Properties

    time: LwcTime
    value?: number
    open?: number
    high?: number
    low?: number
    close?: number