MELCloud & MELCloud Home API for Node.js - v48.2.0
    Preparing search index...

    Interface ReportChartLineOptions

    Line chart data with named series and a measurement unit.

    interface ReportChartLineOptions {
        bands?: readonly ReportChartBand[];
        from: string;
        labels: readonly string[];
        series: readonly { data: (number | null)[]; name: string }[];
        to: string;
        unit: string;
    }

    Hierarchy

    • ReportChartOptions
      • ReportChartLineOptions
    Index
    bands?: readonly ReportChartBand[]

    Background bands (operation modes); absent on most charts.

    from: string

    Start date of the report period.

    labels: readonly string[]

    Formatted axis labels (dates, months, etc.).

    series: readonly { data: (number | null)[]; name: string }[]
    to: string

    End date of the report period.

    unit: string

    Measurement unit label (e.g. '°C', 'dBm').