@c8y/ngx-components
Version:
Angular modules for Cumulocity IoT applications
43 lines • 1.17 kB
TypeScript
export declare const AXIS_TYPES: readonly [{
readonly val: any;
readonly text: "Auto";
}, {
readonly val: "left";
readonly text: "Left";
}, {
readonly val: "right";
readonly text: "Right";
}];
export type AxisTypes = (typeof AXIS_TYPES)[1 | 2]['val'];
export declare const CHART_LINE_TYPES: readonly [{
readonly val: "line";
readonly text: "Line";
}, {
readonly val: "points";
readonly text: "Points";
}, {
readonly val: "linePoints";
readonly text: "Line and points";
}, {
readonly val: "bars";
readonly text: "Bars";
}, {
readonly val: "step-before";
readonly text: "Step before";
}, {
readonly val: "step-after";
readonly text: "Step after";
}];
export type ChartLineTypes = (typeof CHART_LINE_TYPES)[number]['val'];
export declare const CHART_RENDER_TYPES: readonly [{
readonly val: "min";
readonly text: "Minimum";
}, {
readonly val: "max";
readonly text: "Maximum";
}, {
readonly val: "area";
readonly text: "Minimum and maximum";
}];
export type ChartRenderTypes = (typeof CHART_RENDER_TYPES)[number]['val'];
//# sourceMappingURL=datapoint-attributes.model.d.ts.map