@ecan-bi/datav 1.4.9 → 1.4.11

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