@ecan-bi/datav 1.4.9 → 1.4.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,723 @@
1
+ import { Props, Data } from '../../utils/props';
2
+ export interface ValueLineProps extends Props {
3
+ data: Data;
4
+ titleText: string;
5
+ titleSubtext: string;
6
+ titleFontSize: string;
7
+ titleColor: string;
8
+ fontWeight: number;
9
+ textAlign: 'left' | 'right' | 'center';
10
+ titleLeft: string;
11
+ colors: string[];
12
+ legendShow: boolean;
13
+ legendLeft: 'left' | 'center' | 'right';
14
+ legendTop: 'top' | 'middle' | 'bottom';
15
+ legendOrient: 'vertical' | 'horizontal';
16
+ legendTextStyleColor: string;
17
+ symbolSize: number;
18
+ lineStyleWidth: number;
19
+ smooth: boolean;
20
+ xAxisLabelInterval: number;
21
+ xAxisSplitLineShow: boolean;
22
+ xAxisSplitAreaShow: boolean;
23
+ xAxisSplitLineInterval: number;
24
+ xAxisLabelColor: string;
25
+ xAxisLineShow: boolean;
26
+ xAxisLineStyleColor: string;
27
+ xAxisSplitLineStyleColor: string;
28
+ xAxisTickShow: boolean;
29
+ xAxisLabelFormatter: string;
30
+ xAxisInverse: boolean;
31
+ xAxisMinInterval: number;
32
+ xAxisLabelWidth: number | undefined;
33
+ xAxisLabelOverflow: 'none' | 'truncate' | 'break' | 'breakAll';
34
+ xAxisLabelRotate: number;
35
+ yAxisMinInterval: number;
36
+ yAxisInverse: boolean;
37
+ yAxisSplitLineShow: boolean;
38
+ yAxisSplitAreaShow: boolean;
39
+ yAxisSplitLineStyleColor: string;
40
+ yAxisLabelColor: string;
41
+ yAxisLineStyleColor: string;
42
+ yAxisLineAlwaysDisplay: boolean;
43
+ yAxisLabelFormatter: string;
44
+ gridContainLabel: boolean;
45
+ gridTop: string;
46
+ gridBottom: string;
47
+ gridLeft: string;
48
+ gridRight: string;
49
+ graphicConfig: {
50
+ [key: string]: any;
51
+ };
52
+ tooltipFormatter: string;
53
+ tooltipShow: boolean;
54
+ toolboxShow: boolean;
55
+ toolboxDownloadShow: boolean;
56
+ toolboxDataZoomShow: boolean;
57
+ toolboxInfoShow: boolean;
58
+ toolboxOrient: 'horizontal' | 'vertical';
59
+ toolboxItemSize: number;
60
+ toolboxItemGap: number;
61
+ toolboxLeft: 'left' | 'center' | 'right';
62
+ toolboxTop: 'top' | 'middle' | 'bottom';
63
+ toolboxIconStyleBorderColor: string;
64
+ toolboxDownloadUrl: string;
65
+ toolboxInfoText: string;
66
+ areaStyleOpacity: number;
67
+ areaGradientShow: boolean;
68
+ areaGradientColor: string;
69
+ isBoundaryGap: boolean;
70
+ yAxisLabelShow: boolean;
71
+ yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
72
+ legendItemGap: number;
73
+ legendItemWidth: number;
74
+ legendItemHeight: number;
75
+ legendType: string;
76
+ shadowColor: string;
77
+ shadowBlur: number;
78
+ shadowOffsetY: number;
79
+ shadowOffsetX: number;
80
+ legendFontSize: string;
81
+ xAxisLabelFontSize: string;
82
+ yAxisLabelFontSize: string;
83
+ tooltipPosition: string;
84
+ isShowMarkLine: boolean;
85
+ markLineType: 'min' | 'max' | 'average' | 'median';
86
+ legendFormatter: string;
87
+ legendWidth: number | null;
88
+ legendHeight: number | null;
89
+ legendTextWidth: number | null;
90
+ legendScroll: boolean;
91
+ yAxisName: string;
92
+ xAxisName: string;
93
+ xAxisMaxValue: number;
94
+ yAxisMaxValue: number;
95
+ xAxisLabelShow: boolean;
96
+ tooltipTextStyleColor: string;
97
+ customPoint: string;
98
+ axisMarkPoint: {
99
+ [key: string]: any;
100
+ }[];
101
+ }
102
+ export declare const valueLineProps: {
103
+ id: string;
104
+ name: string;
105
+ keyName: string;
106
+ type: string;
107
+ width: string;
108
+ height: string;
109
+ top: string;
110
+ left: string;
111
+ rotate: string;
112
+ data: {
113
+ name: number;
114
+ value: number;
115
+ value2: number;
116
+ }[];
117
+ titleText: string;
118
+ titleFontSize: string;
119
+ titleColor: string;
120
+ fontWeight: number;
121
+ textAlign: string;
122
+ titleSubtext: string;
123
+ titleLeft: string;
124
+ legendShow: boolean;
125
+ legendOrient: string;
126
+ legendTextStyleColor: string;
127
+ legendTop: string;
128
+ legendLeft: string;
129
+ colors: string[];
130
+ symbolSize: number;
131
+ lineStyleWidth: number;
132
+ smooth: boolean;
133
+ xAxisLabelWidth: any;
134
+ xAxisLabelRotate: number;
135
+ xAxisLabelOverflow: string;
136
+ xAxisLabelInterval: number;
137
+ xAxisSplitLineShow: boolean;
138
+ xAxisSplitAreaShow: boolean;
139
+ xAxisSplitLineInterval: number;
140
+ xAxisSplitLineStyleColor: string;
141
+ xAxisLabelColor: string;
142
+ xAxisLineShow: boolean;
143
+ xAxisLineStyleColor: string;
144
+ xAxisTickShow: boolean;
145
+ xAxisLabelFormatter: string;
146
+ xAxisMinInterval: number;
147
+ yAxisMinInterval: number;
148
+ yAxisSplitLineShow: boolean;
149
+ yAxisSplitAreaShow: boolean;
150
+ yAxisSplitLineStyleColor: string;
151
+ yAxisLabelColor: string;
152
+ yAxisLineStyleColor: string;
153
+ yAxisLineAlwaysDisplay: boolean;
154
+ yAxisLabelFormatter: string;
155
+ gridContainLabel: boolean;
156
+ gridTop: string;
157
+ gridBottom: string;
158
+ gridLeft: string;
159
+ gridRight: string;
160
+ graphicConfig: {};
161
+ tooltipShow: boolean;
162
+ tooltipFormatter: string;
163
+ toolboxShow: boolean;
164
+ toolboxDownloadShow: boolean;
165
+ toolboxDataZoomShow: boolean;
166
+ toolboxInfoShow: boolean;
167
+ toolboxOrient: string;
168
+ toolboxItemSize: number;
169
+ toolboxItemGap: number;
170
+ toolboxLeft: string;
171
+ toolboxTop: string;
172
+ toolboxIconStyleBorderColor: string;
173
+ toolboxDownloadUrl: string;
174
+ toolboxInfoText: string;
175
+ areaStyleOpacity: number;
176
+ areaGradientShow: boolean;
177
+ areaGradientColor: string;
178
+ isBoundaryGap: boolean;
179
+ yAxisLabelShow: boolean;
180
+ yAxisSplitLineType: string;
181
+ legendItemGap: number;
182
+ legendItemWidth: number;
183
+ legendItemHeight: number;
184
+ legendType: string;
185
+ shadowColor: string;
186
+ shadowBlur: number;
187
+ shadowOffsetY: number;
188
+ shadowOffsetX: number;
189
+ legendFontSize: string;
190
+ xAxisLabelFontSize: string;
191
+ yAxisLabelFontSize: string;
192
+ tooltipPosition: string;
193
+ isShowMarkLine: boolean;
194
+ markLineType: string;
195
+ legendFormatter: string;
196
+ legendWidth: any;
197
+ legendHeight: any;
198
+ legendTextWidth: any;
199
+ legendScroll: boolean;
200
+ yAxisName: string;
201
+ xAxisName: string;
202
+ xAxisMaxValue: any;
203
+ yAxisMaxValue: any;
204
+ xAxisLabelShow: boolean;
205
+ tooltipTextStyleColor: string;
206
+ customPoint: string;
207
+ axisMarkPoint: any[];
208
+ position: string;
209
+ zIndex: number;
210
+ isShow: boolean;
211
+ isRender: boolean;
212
+ events: import('../../utils/props').Events;
213
+ requestUrl: string;
214
+ requestMethod: import('../../utils/props').RequestMethod;
215
+ requestHeaders: string;
216
+ isOpenRequestTimer: boolean;
217
+ isViewRedrawing: boolean;
218
+ requestInterval: number;
219
+ requestParams: import('../../utils/props').RequestParams;
220
+ requestSort: number;
221
+ dataType: "indicator" | "request" | "static";
222
+ scale?: number;
223
+ requestParamsMode: "1" | "2";
224
+ customRequestParams: string;
225
+ dataSetParam?: any;
226
+ requestType?: any;
227
+ componentDoc?: null;
228
+ };
229
+ export declare const valueLineComponentProps: {
230
+ id: {
231
+ type?: import("vue").PropType<string>;
232
+ default?: string;
233
+ };
234
+ name: {
235
+ type?: import("vue").PropType<string>;
236
+ default?: string;
237
+ };
238
+ keyName: {
239
+ type?: import("vue").PropType<string>;
240
+ default?: string;
241
+ };
242
+ type: {
243
+ type?: import("vue").PropType<string>;
244
+ default?: string;
245
+ };
246
+ width: {
247
+ type?: import("vue").PropType<string>;
248
+ default?: string;
249
+ };
250
+ height: {
251
+ type?: import("vue").PropType<string>;
252
+ default?: string;
253
+ };
254
+ top: {
255
+ type?: import("vue").PropType<string>;
256
+ default?: string;
257
+ };
258
+ left: {
259
+ type?: import("vue").PropType<string>;
260
+ default?: string;
261
+ };
262
+ rotate: {
263
+ type?: import("vue").PropType<string>;
264
+ default?: string;
265
+ };
266
+ data: {
267
+ type?: import("vue").PropType<{
268
+ name: number;
269
+ value: number;
270
+ value2: number;
271
+ }[]>;
272
+ default?: {
273
+ name: number;
274
+ value: number;
275
+ value2: number;
276
+ }[];
277
+ };
278
+ titleText: {
279
+ type?: import("vue").PropType<string>;
280
+ default?: string;
281
+ };
282
+ titleFontSize: {
283
+ type?: import("vue").PropType<string>;
284
+ default?: string;
285
+ };
286
+ titleColor: {
287
+ type?: import("vue").PropType<string>;
288
+ default?: string;
289
+ };
290
+ fontWeight: {
291
+ type?: import("vue").PropType<number>;
292
+ default?: number;
293
+ };
294
+ textAlign: {
295
+ type?: import("vue").PropType<string>;
296
+ default?: string;
297
+ };
298
+ titleSubtext: {
299
+ type?: import("vue").PropType<string>;
300
+ default?: string;
301
+ };
302
+ titleLeft: {
303
+ type?: import("vue").PropType<string>;
304
+ default?: string;
305
+ };
306
+ legendShow: {
307
+ type?: import("vue").PropType<boolean>;
308
+ default?: boolean;
309
+ };
310
+ legendOrient: {
311
+ type?: import("vue").PropType<string>;
312
+ default?: string;
313
+ };
314
+ legendTextStyleColor: {
315
+ type?: import("vue").PropType<string>;
316
+ default?: string;
317
+ };
318
+ legendTop: {
319
+ type?: import("vue").PropType<string>;
320
+ default?: string;
321
+ };
322
+ legendLeft: {
323
+ type?: import("vue").PropType<string>;
324
+ default?: string;
325
+ };
326
+ colors: {
327
+ type?: import("vue").PropType<string[]>;
328
+ default?: string[];
329
+ };
330
+ symbolSize: {
331
+ type?: import("vue").PropType<number>;
332
+ default?: number;
333
+ };
334
+ lineStyleWidth: {
335
+ type?: import("vue").PropType<number>;
336
+ default?: number;
337
+ };
338
+ smooth: {
339
+ type?: import("vue").PropType<boolean>;
340
+ default?: boolean;
341
+ };
342
+ xAxisLabelWidth: {
343
+ type?: import("vue").PropType<any>;
344
+ default?: any;
345
+ };
346
+ xAxisLabelRotate: {
347
+ type?: import("vue").PropType<number>;
348
+ default?: number;
349
+ };
350
+ xAxisLabelOverflow: {
351
+ type?: import("vue").PropType<string>;
352
+ default?: string;
353
+ };
354
+ xAxisLabelInterval: {
355
+ type?: import("vue").PropType<number>;
356
+ default?: number;
357
+ };
358
+ xAxisSplitLineShow: {
359
+ type?: import("vue").PropType<boolean>;
360
+ default?: boolean;
361
+ };
362
+ xAxisSplitAreaShow: {
363
+ type?: import("vue").PropType<boolean>;
364
+ default?: boolean;
365
+ };
366
+ xAxisSplitLineInterval: {
367
+ type?: import("vue").PropType<number>;
368
+ default?: number;
369
+ };
370
+ xAxisSplitLineStyleColor: {
371
+ type?: import("vue").PropType<string>;
372
+ default?: string;
373
+ };
374
+ xAxisLabelColor: {
375
+ type?: import("vue").PropType<string>;
376
+ default?: string;
377
+ };
378
+ xAxisLineShow: {
379
+ type?: import("vue").PropType<boolean>;
380
+ default?: boolean;
381
+ };
382
+ xAxisLineStyleColor: {
383
+ type?: import("vue").PropType<string>;
384
+ default?: string;
385
+ };
386
+ xAxisTickShow: {
387
+ type?: import("vue").PropType<boolean>;
388
+ default?: boolean;
389
+ };
390
+ xAxisLabelFormatter: {
391
+ type?: import("vue").PropType<string>;
392
+ default?: string;
393
+ };
394
+ xAxisMinInterval: {
395
+ type?: import("vue").PropType<number>;
396
+ default?: number;
397
+ };
398
+ yAxisMinInterval: {
399
+ type?: import("vue").PropType<number>;
400
+ default?: number;
401
+ };
402
+ yAxisSplitLineShow: {
403
+ type?: import("vue").PropType<boolean>;
404
+ default?: boolean;
405
+ };
406
+ yAxisSplitAreaShow: {
407
+ type?: import("vue").PropType<boolean>;
408
+ default?: boolean;
409
+ };
410
+ yAxisSplitLineStyleColor: {
411
+ type?: import("vue").PropType<string>;
412
+ default?: string;
413
+ };
414
+ yAxisLabelColor: {
415
+ type?: import("vue").PropType<string>;
416
+ default?: string;
417
+ };
418
+ yAxisLineStyleColor: {
419
+ type?: import("vue").PropType<string>;
420
+ default?: string;
421
+ };
422
+ yAxisLineAlwaysDisplay: {
423
+ type?: import("vue").PropType<boolean>;
424
+ default?: boolean;
425
+ };
426
+ yAxisLabelFormatter: {
427
+ type?: import("vue").PropType<string>;
428
+ default?: string;
429
+ };
430
+ gridContainLabel: {
431
+ type?: import("vue").PropType<boolean>;
432
+ default?: boolean;
433
+ };
434
+ gridTop: {
435
+ type?: import("vue").PropType<string>;
436
+ default?: string;
437
+ };
438
+ gridBottom: {
439
+ type?: import("vue").PropType<string>;
440
+ default?: string;
441
+ };
442
+ gridLeft: {
443
+ type?: import("vue").PropType<string>;
444
+ default?: string;
445
+ };
446
+ gridRight: {
447
+ type?: import("vue").PropType<string>;
448
+ default?: string;
449
+ };
450
+ graphicConfig: {
451
+ type?: import("vue").PropType<{}>;
452
+ default?: {};
453
+ };
454
+ tooltipShow: {
455
+ type?: import("vue").PropType<boolean>;
456
+ default?: boolean;
457
+ };
458
+ tooltipFormatter: {
459
+ type?: import("vue").PropType<string>;
460
+ default?: string;
461
+ };
462
+ toolboxShow: {
463
+ type?: import("vue").PropType<boolean>;
464
+ default?: boolean;
465
+ };
466
+ toolboxDownloadShow: {
467
+ type?: import("vue").PropType<boolean>;
468
+ default?: boolean;
469
+ };
470
+ toolboxDataZoomShow: {
471
+ type?: import("vue").PropType<boolean>;
472
+ default?: boolean;
473
+ };
474
+ toolboxInfoShow: {
475
+ type?: import("vue").PropType<boolean>;
476
+ default?: boolean;
477
+ };
478
+ toolboxOrient: {
479
+ type?: import("vue").PropType<string>;
480
+ default?: string;
481
+ };
482
+ toolboxItemSize: {
483
+ type?: import("vue").PropType<number>;
484
+ default?: number;
485
+ };
486
+ toolboxItemGap: {
487
+ type?: import("vue").PropType<number>;
488
+ default?: number;
489
+ };
490
+ toolboxLeft: {
491
+ type?: import("vue").PropType<string>;
492
+ default?: string;
493
+ };
494
+ toolboxTop: {
495
+ type?: import("vue").PropType<string>;
496
+ default?: string;
497
+ };
498
+ toolboxIconStyleBorderColor: {
499
+ type?: import("vue").PropType<string>;
500
+ default?: string;
501
+ };
502
+ toolboxDownloadUrl: {
503
+ type?: import("vue").PropType<string>;
504
+ default?: string;
505
+ };
506
+ toolboxInfoText: {
507
+ type?: import("vue").PropType<string>;
508
+ default?: string;
509
+ };
510
+ areaStyleOpacity: {
511
+ type?: import("vue").PropType<number>;
512
+ default?: number;
513
+ };
514
+ areaGradientShow: {
515
+ type?: import("vue").PropType<boolean>;
516
+ default?: boolean;
517
+ };
518
+ areaGradientColor: {
519
+ type?: import("vue").PropType<string>;
520
+ default?: string;
521
+ };
522
+ isBoundaryGap: {
523
+ type?: import("vue").PropType<boolean>;
524
+ default?: boolean;
525
+ };
526
+ yAxisLabelShow: {
527
+ type?: import("vue").PropType<boolean>;
528
+ default?: boolean;
529
+ };
530
+ yAxisSplitLineType: {
531
+ type?: import("vue").PropType<string>;
532
+ default?: string;
533
+ };
534
+ legendItemGap: {
535
+ type?: import("vue").PropType<number>;
536
+ default?: number;
537
+ };
538
+ legendItemWidth: {
539
+ type?: import("vue").PropType<number>;
540
+ default?: number;
541
+ };
542
+ legendItemHeight: {
543
+ type?: import("vue").PropType<number>;
544
+ default?: number;
545
+ };
546
+ legendType: {
547
+ type?: import("vue").PropType<string>;
548
+ default?: string;
549
+ };
550
+ shadowColor: {
551
+ type?: import("vue").PropType<string>;
552
+ default?: string;
553
+ };
554
+ shadowBlur: {
555
+ type?: import("vue").PropType<number>;
556
+ default?: number;
557
+ };
558
+ shadowOffsetY: {
559
+ type?: import("vue").PropType<number>;
560
+ default?: number;
561
+ };
562
+ shadowOffsetX: {
563
+ type?: import("vue").PropType<number>;
564
+ default?: number;
565
+ };
566
+ legendFontSize: {
567
+ type?: import("vue").PropType<string>;
568
+ default?: string;
569
+ };
570
+ xAxisLabelFontSize: {
571
+ type?: import("vue").PropType<string>;
572
+ default?: string;
573
+ };
574
+ yAxisLabelFontSize: {
575
+ type?: import("vue").PropType<string>;
576
+ default?: string;
577
+ };
578
+ tooltipPosition: {
579
+ type?: import("vue").PropType<string>;
580
+ default?: string;
581
+ };
582
+ isShowMarkLine: {
583
+ type?: import("vue").PropType<boolean>;
584
+ default?: boolean;
585
+ };
586
+ markLineType: {
587
+ type?: import("vue").PropType<string>;
588
+ default?: string;
589
+ };
590
+ legendFormatter: {
591
+ type?: import("vue").PropType<string>;
592
+ default?: string;
593
+ };
594
+ legendWidth: {
595
+ type?: import("vue").PropType<any>;
596
+ default?: any;
597
+ };
598
+ legendHeight: {
599
+ type?: import("vue").PropType<any>;
600
+ default?: any;
601
+ };
602
+ legendTextWidth: {
603
+ type?: import("vue").PropType<any>;
604
+ default?: any;
605
+ };
606
+ legendScroll: {
607
+ type?: import("vue").PropType<boolean>;
608
+ default?: boolean;
609
+ };
610
+ yAxisName: {
611
+ type?: import("vue").PropType<string>;
612
+ default?: string;
613
+ };
614
+ xAxisName: {
615
+ type?: import("vue").PropType<string>;
616
+ default?: string;
617
+ };
618
+ xAxisMaxValue: {
619
+ type?: import("vue").PropType<any>;
620
+ default?: any;
621
+ };
622
+ yAxisMaxValue: {
623
+ type?: import("vue").PropType<any>;
624
+ default?: any;
625
+ };
626
+ xAxisLabelShow: {
627
+ type?: import("vue").PropType<boolean>;
628
+ default?: boolean;
629
+ };
630
+ tooltipTextStyleColor: {
631
+ type?: import("vue").PropType<string>;
632
+ default?: string;
633
+ };
634
+ customPoint: {
635
+ type?: import("vue").PropType<string>;
636
+ default?: string;
637
+ };
638
+ axisMarkPoint: {
639
+ type?: import("vue").PropType<any[]>;
640
+ default?: any[];
641
+ };
642
+ position: {
643
+ type?: import("vue").PropType<string>;
644
+ default?: string;
645
+ };
646
+ zIndex: {
647
+ type?: import("vue").PropType<number>;
648
+ default?: number;
649
+ };
650
+ isShow: {
651
+ type?: import("vue").PropType<boolean>;
652
+ default?: boolean;
653
+ };
654
+ isRender: {
655
+ type?: import("vue").PropType<boolean>;
656
+ default?: boolean;
657
+ };
658
+ events: {
659
+ type?: import("vue").PropType<import('../../utils/props').Events>;
660
+ default?: import('../../utils/props').Events;
661
+ };
662
+ requestUrl: {
663
+ type?: import("vue").PropType<string>;
664
+ default?: string;
665
+ };
666
+ requestMethod: {
667
+ type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
668
+ default?: import('../../utils/props').RequestMethod;
669
+ };
670
+ requestHeaders: {
671
+ type?: import("vue").PropType<string>;
672
+ default?: string;
673
+ };
674
+ isOpenRequestTimer: {
675
+ type?: import("vue").PropType<boolean>;
676
+ default?: boolean;
677
+ };
678
+ isViewRedrawing: {
679
+ type?: import("vue").PropType<boolean>;
680
+ default?: boolean;
681
+ };
682
+ requestInterval: {
683
+ type?: import("vue").PropType<number>;
684
+ default?: number;
685
+ };
686
+ requestParams: {
687
+ type?: import("vue").PropType<import('../../utils/props').RequestParams>;
688
+ default?: import('../../utils/props').RequestParams;
689
+ };
690
+ requestSort: {
691
+ type?: import("vue").PropType<number>;
692
+ default?: number;
693
+ };
694
+ dataType: {
695
+ type?: import("vue").PropType<"indicator" | "request" | "static">;
696
+ default?: "indicator" | "request" | "static";
697
+ };
698
+ scale?: {
699
+ type?: import("vue").PropType<number>;
700
+ default?: number;
701
+ };
702
+ requestParamsMode: {
703
+ type?: import("vue").PropType<"1" | "2">;
704
+ default?: "1" | "2";
705
+ };
706
+ customRequestParams: {
707
+ type?: import("vue").PropType<string>;
708
+ default?: string;
709
+ };
710
+ dataSetParam?: {
711
+ type?: import("vue").PropType<any>;
712
+ default?: any;
713
+ };
714
+ requestType?: {
715
+ type?: import("vue").PropType<any>;
716
+ default?: any;
717
+ };
718
+ componentDoc?: {
719
+ type?: import("vue").PropType<null>;
720
+ default?: null;
721
+ };
722
+ };
723
+ export declare const valueLineEvents: string[];