Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 726 Bytes

File metadata and controls

24 lines (17 loc) · 726 Bytes

InsightsChartSeriesDataPoint

Properties

Name Type Description Notes
x number X-axis value [default to undefined]
y number Y-axis value [default to undefined]
values { [key: string]: any; } Additional values for the data point [optional] [default to undefined]

Example

import { InsightsChartSeriesDataPoint } from 'launchdarkly-api-typescript';

const instance: InsightsChartSeriesDataPoint = {
    x,
    y,
    values,
};

[Back to Model list] [Back to API list] [Back to README]