UNPKG

1.07 kBTypeScriptView Raw
1import { H as HorizontalMarker } from './Interfaces-f50ad224';
2
3declare class ChartDataOptions {
4 searchSpan: any;
5 color: string | Function;
6 alias: string;
7 contextMenu: any;
8 measureTypes: Array<string>;
9 interpolationFunction: string;
10 yExtent: any;
11 includeEnvelope: boolean;
12 includeDots: boolean;
13 visibilityState: Array<any>;
14 timeShift: string;
15 startAt: string;
16 dataType: string;
17 valueMapping: any;
18 height: number;
19 onElementClick: any;
20 eventElementType: any;
21 rollupCategoricalValues: boolean;
22 tooltipAttributes: Array<any>;
23 positionX: number;
24 positionY: number;
25 swimLane: number;
26 variableAlias: any;
27 connectPoints: boolean;
28 pointConnectionMeasure: string;
29 positionXVariableName: string;
30 positionYVariableName: string;
31 image: string;
32 isRawData: boolean;
33 isVariableAliasShownOnTooltip: boolean;
34 horizontalMarkers: Array<HorizontalMarker>;
35 constructor(optionsObject: Object);
36}
37
38export { ChartDataOptions as C };