forked from syncfusion/ej2-javascript-ui-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchart-base-model.d.ts
470 lines (396 loc) · 9.75 KB
/
chart-base-model.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
import { ChildProperty, Property, Complex, Collection } from '@syncfusion/ej2-base';import { ZIndex, Anchor, BorderType, SizeType } from '../utils/enum';import { Theme } from '../../common/model/theme';import { Font, Border } from '../../common/model/base';import { BorderModel, FontModel } from '../../common/model/base-model';import { Units, Alignment, Regions, Position, TextOverflow } from '../../common/utils/enum';
/**
* Interface for a class ChartAnnotationSettings
*/
export interface ChartAnnotationSettingsModel {
/**
* if set coordinateUnit as `Pixel` X specifies the axis value
* else is specifies pixel or percentage of coordinate
*
* @default '0'
* @aspType object
*/
x?: string | Date | number;
/**
* if set coordinateUnit as `Pixel` Y specifies the axis value
* else is specifies pixel or percentage of coordinate
*
* @default '0'
*/
y?: string | number;
/**
* Content of the annotation, which accepts the id of the custom element.
*
* @default null
*/
content?: string;
/**
* Specifies the alignment of the annotation. They are
* * Near - Align the annotation element as left side.
* * Far - Align the annotation element as right side.
* * Center - Align the annotation element as mid point.
*
* @default 'Center'
* @deprecated
*/
horizontalAlignment?: Alignment;
/**
* Specifies the coordinate units of the annotation. They are
* * Pixel - Annotation renders based on x and y pixel value.
* * Point - Annotation renders based on x and y axis value.
*
* @default 'Pixel'
*/
coordinateUnits?: Units;
/**
* Specifies the regions of the annotation. They are
* * Chart - Annotation renders based on chart coordinates.
* * Series - Annotation renders based on series coordinates.
*
* @default 'Chart'
*/
region?: Regions;
/**
* Specifies the position of the annotation. They are
* * Top - Align the annotation element as top side.
* * Bottom - Align the annotation element as bottom side.
* * Middle - Align the annotation element as mid point.
*
* @default 'Middle'
* @deprecated
*/
verticalAlignment?: Position;
/**
* The name of horizontal axis associated with the annotation.
* It requires `axes` of chart.
*
* @default null
*/
xAxisName?: string;
/**
* The name of vertical axis associated with the annotation.
* It requires `axes` of chart.
*
* @default null
*/
yAxisName?: string;
/**
* Information about annotation for assistive technology.
*
* @default null
*/
description?: string;
}
/**
* Interface for a class LabelBorder
*/
export interface LabelBorderModel {
/**
* The color of the border that accepts value in hex and rgba as a valid CSS color string.
*
* @default ''
*/
color?: string;
/**
* The width of the border in pixels.
*
* @default 1
*/
width?: number;
/**
* Border type for labels
* * Rectangle
* * Without Top Border
* * Without Top and BottomBorder
* * Without Border
* * Brace
* * CurlyBrace
*
* @default 'Rectangle'
*/
type?: BorderType;
}
/**
* Interface for a class MultiLevelCategories
*/
export interface MultiLevelCategoriesModel {
/**
* Start value of the multi level labels
*
* @default null
* @aspDefaultValueIgnore
*/
start?: number | Date | string;
/**
* End value of the multi level labels
*
* @default null
* @aspDefaultValueIgnore
*/
end?: number | Date | string;
/**
* multi level labels text.
*
* @default ''
*/
text?: string;
/**
* Maximum width of the text for multi level labels.
*
* @default null
* @aspDefaultValueIgnore
*/
maximumTextWidth?: number;
/**
* multi level labels custom data.
*
* @default null
*/
customAttributes?: object;
/**
* Border type for labels
* * Rectangle
* * Without Top Border
* * Without Top and BottomBorder
* * Without Border
* * Brace
* * CurlyBrace
*
* @default 'Rectangle'
* @aspDefaultValueIgnore
* @blazorDefaultValueIgnore
*/
type?: BorderType;
}
/**
* Interface for a class StripLineSettings
*/
export interface StripLineSettingsModel {
/**
* If set true, strip line for axis renders.
*
* @default true
*/
visible?: boolean;
/**
* If set true, strip line get render from axis origin.
*
* @default false
*/
startFromAxis?: boolean;
/**
* Start value of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
start?: Object | number | Date;
/**
* End value of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
end?: Object | number | Date;
/**
* Size of the strip line, when it starts from the origin.
*
* @default null
* @aspDefaultValueIgnore
*/
size?: number;
/**
* Color of the strip line.
*
* @default '#808080'
*/
color?: string;
/**
* Dash Array of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
dashArray?: string;
/**
* Size type of the strip line
*
* @default Auto
*/
sizeType?: SizeType;
/**
* isRepeat value of the strip line.
*
* @default false
* @aspDefaultValueIgnore
*/
isRepeat?: boolean;
/**
* repeatEvery value of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
repeatEvery?: Object | number | Date;
/**
* repeatUntil value of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
repeatUntil?: Object | number | Date;
/**
* isSegmented value of the strip line
*
* @default false
* @aspDefaultValueIgnore
*/
isSegmented?: boolean;
/**
* segmentStart value of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
segmentStart?: Object | number | Date;
/**
* segmentEnd value of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
segmentEnd?: Object | number | Date;
/**
* segmentAxisName of the strip line.
*
* @default null
* @aspDefaultValueIgnore
*/
segmentAxisName?: string;
/**
* Border of the strip line.
*/
border?: BorderModel;
/**
* Strip line text.
*
* @default ''
*/
text?: string;
/**
* The angle to which the strip line text gets rotated.
*
* @default null
* @aspDefaultValueIgnore
*/
rotation?: number;
/**
* Defines the position of the strip line text horizontally. They are,
* * Start: Places the strip line text at the start.
* * Middle: Places the strip line text in the middle.
* * End: Places the strip line text at the end.
*
* @default 'Middle'
*/
horizontalAlignment?: Anchor;
/**
* Defines the position of the strip line text vertically. They are,
* * Start: Places the strip line text at the start.
* * Middle: Places the strip line text in the middle.
* * End: Places the strip line text at the end.
*
* @default 'Middle'
*/
verticalAlignment?: Anchor;
/**
* Options to customize the strip line text.
*/
textStyle?: FontModel;
/**
* Specifies the order of the strip line. They are,
* * Behind: Places the strip line behind the series elements.
* * Over: Places the strip line over the series elements.
*
* @default 'Behind'
*/
zIndex?: ZIndex;
/**
* Strip line Opacity
*
* @default 1
*/
opacity?: number;
}
/**
* Interface for a class MultiLevelLabels
*/
export interface MultiLevelLabelsModel {
/**
* Defines the position of the multi level labels. They are,
* * Near: Places the multi level labels at Near.
* * Center: Places the multi level labels at Center.
* * Far: Places the multi level labels at Far.
*
* @default 'Center'
*/
alignment?: Alignment;
/**
* Defines the textOverFlow for multi level labels. They are,
* * Trim: Trim textOverflow for multi level labels.
* * Wrap: Wrap textOverflow for multi level labels.
* * none: None textOverflow for multi level labels.
*
* @default 'Wrap'
*/
overflow?: TextOverflow;
/**
* Options to customize the multi level labels.
*/
textStyle?: FontModel;
/**
* Border of the multi level labels.
*/
border?: LabelBorderModel;
/**
* multi level categories for multi level labels.
*/
categories?: MultiLevelCategoriesModel[];
}
/**
* Interface for a class ScrollbarSettingsRange
*/
export interface ScrollbarSettingsRangeModel {
/**
* Specifies the minimum range of an scrollbar.
*
* @default null
*/
minimum?: Date | string | number;
/**
* Specifies the maximum range of an scrollbar.
*
* @default null
*/
maximum?: Date | string | number;
}
/**
* Interface for a class ScrollbarSettings
*/
export interface ScrollbarSettingsModel {
/**
* Enables the scrollbar for lazy loading.
*
* @default false
*/
enable?: boolean;
/**
* Defines the length of the points for numeric and logarithmic values.
*
* @default null
*/
pointsLength?: number;
/**
* Specifies the range for date time values alone.
*/
range?: ScrollbarSettingsRangeModel;
}