Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1002 Bytes

File metadata and controls

28 lines (21 loc) · 1002 Bytes

InsightsChartMetadata

Properties

Name Type Description Notes
summary { [key: string]: any; } [default to undefined]
name string Name of the chart [optional] [default to undefined]
metrics { [key: string]: InsightsChartMetric; } [optional] [default to undefined]
xAxis InsightsChartSeriesMetadataAxis [default to undefined]
yAxis InsightsChartSeriesMetadataAxis [default to undefined]

Example

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

const instance: InsightsChartMetadata = {
    summary,
    name,
    metrics,
    xAxis,
    yAxis,
};

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