File

apps/live-weather/src/app/shared/place-hourly-forecast/IChart.ts

Description

Interface for series data

Index

Properties

Properties

name
name: string
Type : string

Data to be published on y-axis

value
value: number
Type : number

Data to be published on x-axis

export interface IChart {
  /**
   * name of the chart category
   */
  name: string;
  /**
   * Collection of detailed data
   */
  series: ISeries[];
}

/**
 * Interface for series data
 */
export interface ISeries {
  /**
   * Data to be published on y-axis
   */
  name: string;
  /**
   * Data to be published on x-axis
   */
  value: number;
}

result-matching ""

    No results matching ""