MELCloud & MELCloud Home API for Node.js - v23.3.3
    Preparing search index...

    Interface ReportChartLineOptions

    Line chart data with named series and a measurement unit.

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

    Hierarchy

    • ReportChartOptions
      • ReportChartLineOptions
    Index

    Properties

    Properties

    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').