ITrendData

A single data point in a trend visualization

Definition

interface ITrendData {

    /**
     * The time stamp of when this data point was recorded. This should be a Date object a string that can be parsed into a date object
     */
    time: Date | string,

    /**
     * The value at that point in time
     */
    value: number
}

Usage

import { ITrendData } from 'uxp/components';

Last updated