@ecan-bi/datav 1.5.95 → 1.5.97

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,765 @@
1
+ import { Props, Data, ValueTypeDataFieldNames, KeyTypeDataFieldNames } from '../../utils/props';
2
+ export interface BoxplotProps 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
+ xAxisLabelInterval: number;
18
+ xAxisSplitLineShow: boolean;
19
+ xAxisSplitAreaShow: boolean;
20
+ xAxisSplitLineInterval: number;
21
+ xAxisLabelColor: string;
22
+ xAxisLineShow: boolean;
23
+ xAxisLineStyleColor: string;
24
+ xAxisSplitLineStyleColor: string;
25
+ xAxisTickShow: boolean;
26
+ xAxisLabelFormatter: string;
27
+ xAxisInverse: boolean;
28
+ xAxisMinInterval: number;
29
+ xAxisLabelWidth: number | undefined;
30
+ xAxisLabelOverflow: 'none' | 'truncate' | 'break' | 'breakAll';
31
+ xAxisLabelRotate: number;
32
+ yAxisMinInterval: number;
33
+ yAxisInverse: boolean;
34
+ yAxisSplitLineShow: boolean;
35
+ yAxisSplitAreaShow: boolean;
36
+ yAxisSplitLineStyleColor: string;
37
+ yAxisLabelColor: string;
38
+ yAxisLineStyleColor: string;
39
+ yAxisLineAlwaysDisplay: boolean;
40
+ yAxisLabelFormatter: string;
41
+ valueTypeDataFieldNames: ValueTypeDataFieldNames;
42
+ keyTypeDataFieldNames: KeyTypeDataFieldNames;
43
+ dataFieldConfigType: 'key' | 'value';
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
+ isBoundaryGap: boolean;
67
+ yAxisLabelShow: boolean;
68
+ yAxisSplitLineType: 'solid' | 'dashed' | 'dotted';
69
+ legendItemGap: number;
70
+ legendItemWidth: number;
71
+ legendItemHeight: number;
72
+ legendType: string;
73
+ legendFontSize: string;
74
+ xAxisLabelFontSize: string;
75
+ yAxisLabelFontSize: string;
76
+ graphicType: string;
77
+ tooltipPosition: string;
78
+ isShowMarkLine: boolean;
79
+ markLineType: 'min' | 'max' | 'average' | 'median';
80
+ legendFormatter: string;
81
+ legendWidth: number | null;
82
+ legendHeight: number | null;
83
+ legendTextWidth: number | null;
84
+ legendScroll: boolean;
85
+ yAxisName: string;
86
+ xAxisName: string;
87
+ xAxisMaxValue: number;
88
+ yAxisMaxValue: number;
89
+ xAxisLabelShow: boolean;
90
+ tooltipTextStyleColor: string;
91
+ noDataTip: boolean;
92
+ tipText: string;
93
+ tipTextColor: string;
94
+ tipTextFontSize: string;
95
+ boxplotColor: string;
96
+ boxplotBorderColor: string;
97
+ }
98
+ export declare const boxplotProps: {
99
+ id: string;
100
+ name: string;
101
+ keyName: string;
102
+ type: string;
103
+ width: string;
104
+ height: string;
105
+ top: string;
106
+ left: string;
107
+ rotate: string;
108
+ data: {
109
+ category: string;
110
+ min: number;
111
+ Q1: number;
112
+ median: number;
113
+ Q3: number;
114
+ max: number;
115
+ }[];
116
+ titleText: string;
117
+ titleFontSize: string;
118
+ titleColor: string;
119
+ fontWeight: number;
120
+ textAlign: string;
121
+ titleSubtext: string;
122
+ titleLeft: string;
123
+ legendShow: boolean;
124
+ legendOrient: string;
125
+ legendTextStyleColor: string;
126
+ legendTop: string;
127
+ legendLeft: string;
128
+ xAxisLabelWidth: any;
129
+ xAxisLabelRotate: number;
130
+ xAxisLabelOverflow: string;
131
+ xAxisLabelInterval: number;
132
+ xAxisSplitLineShow: boolean;
133
+ xAxisSplitAreaShow: boolean;
134
+ xAxisSplitLineInterval: number;
135
+ xAxisSplitLineStyleColor: string;
136
+ xAxisLabelColor: string;
137
+ xAxisLineShow: boolean;
138
+ xAxisLineStyleColor: string;
139
+ xAxisTickShow: boolean;
140
+ xAxisLabelFormatter: string;
141
+ xAxisMinInterval: number;
142
+ yAxisMinInterval: number;
143
+ yAxisSplitLineShow: boolean;
144
+ yAxisSplitAreaShow: boolean;
145
+ yAxisSplitLineStyleColor: string;
146
+ yAxisLabelColor: string;
147
+ yAxisLineStyleColor: string;
148
+ yAxisLineAlwaysDisplay: boolean;
149
+ yAxisLabelFormatter: string;
150
+ gridContainLabel: boolean;
151
+ gridTop: string;
152
+ gridBottom: string;
153
+ gridLeft: string;
154
+ gridRight: string;
155
+ valueTypeDataFieldNames: {
156
+ name: string;
157
+ value: string;
158
+ type: string;
159
+ };
160
+ keyTypeDataFieldNames: {
161
+ name: string;
162
+ types: any[];
163
+ };
164
+ dataFieldConfigType: string;
165
+ graphicConfig: {};
166
+ tooltipShow: boolean;
167
+ tooltipFormatter: string;
168
+ toolboxShow: boolean;
169
+ toolboxDownloadShow: boolean;
170
+ toolboxDataZoomShow: boolean;
171
+ toolboxInfoShow: boolean;
172
+ toolboxOrient: string;
173
+ toolboxItemSize: number;
174
+ toolboxItemGap: number;
175
+ toolboxLeft: string;
176
+ toolboxTop: string;
177
+ toolboxIconStyleBorderColor: string;
178
+ toolboxDownloadUrl: string;
179
+ toolboxInfoText: string;
180
+ isBoundaryGap: boolean;
181
+ yAxisLabelShow: boolean;
182
+ yAxisSplitLineType: string;
183
+ legendItemGap: number;
184
+ legendItemWidth: number;
185
+ legendItemHeight: number;
186
+ legendType: string;
187
+ legendFontSize: string;
188
+ xAxisLabelFontSize: string;
189
+ yAxisLabelFontSize: string;
190
+ graphicType: string;
191
+ tooltipPosition: string;
192
+ isShowMarkLine: boolean;
193
+ markLineType: string;
194
+ legendFormatter: string;
195
+ legendWidth: any;
196
+ legendHeight: any;
197
+ legendTextWidth: any;
198
+ legendScroll: boolean;
199
+ yAxisName: string;
200
+ xAxisName: string;
201
+ xAxisMaxValue: any;
202
+ yAxisMaxValue: any;
203
+ xAxisLabelShow: boolean;
204
+ tooltipTextStyleColor: string;
205
+ noDataTip: boolean;
206
+ tipText: string;
207
+ tipTextColor: string;
208
+ tipTextFontSize: string;
209
+ boxplotColor: string;
210
+ boxplotBorderColor: string;
211
+ position: string;
212
+ zIndex: number;
213
+ isShow: boolean;
214
+ isRender: boolean;
215
+ events: import('../../utils/props').Events;
216
+ requestUrl: string;
217
+ requestMethod: import('../../utils/props').RequestMethod;
218
+ requestHeaders: string;
219
+ isOpenRequestTimer: boolean;
220
+ isViewRedrawing: boolean;
221
+ requestInterval: number;
222
+ requestParams: import('../../utils/props').RequestParams;
223
+ requestSort: number;
224
+ dataType: "indicator" | "request" | "component" | "static";
225
+ scale?: number;
226
+ requestParamsMode: "2" | "1";
227
+ customRequestParams: string;
228
+ dataSetParam?: any;
229
+ requestType?: any;
230
+ componentDoc?: null;
231
+ extendData?: {
232
+ [key: string]: any;
233
+ };
234
+ isShowIndDetail?: boolean;
235
+ isShowTrend?: boolean;
236
+ indDetailIconColor?: string;
237
+ indDetailIconFontSize?: string;
238
+ };
239
+ export declare const boxplotComponentProps: {
240
+ id: {
241
+ type?: import("vue").PropType<string>;
242
+ default?: string;
243
+ };
244
+ name: {
245
+ type?: import("vue").PropType<string>;
246
+ default?: string;
247
+ };
248
+ keyName: {
249
+ type?: import("vue").PropType<string>;
250
+ default?: string;
251
+ };
252
+ type: {
253
+ type?: import("vue").PropType<string>;
254
+ default?: string;
255
+ };
256
+ width: {
257
+ type?: import("vue").PropType<string>;
258
+ default?: string;
259
+ };
260
+ height: {
261
+ type?: import("vue").PropType<string>;
262
+ default?: string;
263
+ };
264
+ top: {
265
+ type?: import("vue").PropType<string>;
266
+ default?: string;
267
+ };
268
+ left: {
269
+ type?: import("vue").PropType<string>;
270
+ default?: string;
271
+ };
272
+ rotate: {
273
+ type?: import("vue").PropType<string>;
274
+ default?: string;
275
+ };
276
+ data: {
277
+ type?: import("vue").PropType<{
278
+ category: string;
279
+ min: number;
280
+ Q1: number;
281
+ median: number;
282
+ Q3: number;
283
+ max: number;
284
+ }[]>;
285
+ default?: {
286
+ category: string;
287
+ min: number;
288
+ Q1: number;
289
+ median: number;
290
+ Q3: number;
291
+ max: number;
292
+ }[];
293
+ };
294
+ titleText: {
295
+ type?: import("vue").PropType<string>;
296
+ default?: string;
297
+ };
298
+ titleFontSize: {
299
+ type?: import("vue").PropType<string>;
300
+ default?: string;
301
+ };
302
+ titleColor: {
303
+ type?: import("vue").PropType<string>;
304
+ default?: string;
305
+ };
306
+ fontWeight: {
307
+ type?: import("vue").PropType<number>;
308
+ default?: number;
309
+ };
310
+ textAlign: {
311
+ type?: import("vue").PropType<string>;
312
+ default?: string;
313
+ };
314
+ titleSubtext: {
315
+ type?: import("vue").PropType<string>;
316
+ default?: string;
317
+ };
318
+ titleLeft: {
319
+ type?: import("vue").PropType<string>;
320
+ default?: string;
321
+ };
322
+ legendShow: {
323
+ type?: import("vue").PropType<boolean>;
324
+ default?: boolean;
325
+ };
326
+ legendOrient: {
327
+ type?: import("vue").PropType<string>;
328
+ default?: string;
329
+ };
330
+ legendTextStyleColor: {
331
+ type?: import("vue").PropType<string>;
332
+ default?: string;
333
+ };
334
+ legendTop: {
335
+ type?: import("vue").PropType<string>;
336
+ default?: string;
337
+ };
338
+ legendLeft: {
339
+ type?: import("vue").PropType<string>;
340
+ default?: string;
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
+ valueTypeDataFieldNames: {
451
+ type?: import("vue").PropType<{
452
+ name: string;
453
+ value: string;
454
+ type: string;
455
+ }>;
456
+ default?: {
457
+ name: string;
458
+ value: string;
459
+ type: string;
460
+ };
461
+ };
462
+ keyTypeDataFieldNames: {
463
+ type?: import("vue").PropType<{
464
+ name: string;
465
+ types: any[];
466
+ }>;
467
+ default?: {
468
+ name: string;
469
+ types: any[];
470
+ };
471
+ };
472
+ dataFieldConfigType: {
473
+ type?: import("vue").PropType<string>;
474
+ default?: string;
475
+ };
476
+ graphicConfig: {
477
+ type?: import("vue").PropType<{}>;
478
+ default?: {};
479
+ };
480
+ tooltipShow: {
481
+ type?: import("vue").PropType<boolean>;
482
+ default?: boolean;
483
+ };
484
+ tooltipFormatter: {
485
+ type?: import("vue").PropType<string>;
486
+ default?: string;
487
+ };
488
+ toolboxShow: {
489
+ type?: import("vue").PropType<boolean>;
490
+ default?: boolean;
491
+ };
492
+ toolboxDownloadShow: {
493
+ type?: import("vue").PropType<boolean>;
494
+ default?: boolean;
495
+ };
496
+ toolboxDataZoomShow: {
497
+ type?: import("vue").PropType<boolean>;
498
+ default?: boolean;
499
+ };
500
+ toolboxInfoShow: {
501
+ type?: import("vue").PropType<boolean>;
502
+ default?: boolean;
503
+ };
504
+ toolboxOrient: {
505
+ type?: import("vue").PropType<string>;
506
+ default?: string;
507
+ };
508
+ toolboxItemSize: {
509
+ type?: import("vue").PropType<number>;
510
+ default?: number;
511
+ };
512
+ toolboxItemGap: {
513
+ type?: import("vue").PropType<number>;
514
+ default?: number;
515
+ };
516
+ toolboxLeft: {
517
+ type?: import("vue").PropType<string>;
518
+ default?: string;
519
+ };
520
+ toolboxTop: {
521
+ type?: import("vue").PropType<string>;
522
+ default?: string;
523
+ };
524
+ toolboxIconStyleBorderColor: {
525
+ type?: import("vue").PropType<string>;
526
+ default?: string;
527
+ };
528
+ toolboxDownloadUrl: {
529
+ type?: import("vue").PropType<string>;
530
+ default?: string;
531
+ };
532
+ toolboxInfoText: {
533
+ type?: import("vue").PropType<string>;
534
+ default?: string;
535
+ };
536
+ isBoundaryGap: {
537
+ type?: import("vue").PropType<boolean>;
538
+ default?: boolean;
539
+ };
540
+ yAxisLabelShow: {
541
+ type?: import("vue").PropType<boolean>;
542
+ default?: boolean;
543
+ };
544
+ yAxisSplitLineType: {
545
+ type?: import("vue").PropType<string>;
546
+ default?: string;
547
+ };
548
+ legendItemGap: {
549
+ type?: import("vue").PropType<number>;
550
+ default?: number;
551
+ };
552
+ legendItemWidth: {
553
+ type?: import("vue").PropType<number>;
554
+ default?: number;
555
+ };
556
+ legendItemHeight: {
557
+ type?: import("vue").PropType<number>;
558
+ default?: number;
559
+ };
560
+ legendType: {
561
+ type?: import("vue").PropType<string>;
562
+ default?: string;
563
+ };
564
+ legendFontSize: {
565
+ type?: import("vue").PropType<string>;
566
+ default?: string;
567
+ };
568
+ xAxisLabelFontSize: {
569
+ type?: import("vue").PropType<string>;
570
+ default?: string;
571
+ };
572
+ yAxisLabelFontSize: {
573
+ type?: import("vue").PropType<string>;
574
+ default?: string;
575
+ };
576
+ graphicType: {
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
+ noDataTip: {
637
+ type?: import("vue").PropType<boolean>;
638
+ default?: boolean;
639
+ };
640
+ tipText: {
641
+ type?: import("vue").PropType<string>;
642
+ default?: string;
643
+ };
644
+ tipTextColor: {
645
+ type?: import("vue").PropType<string>;
646
+ default?: string;
647
+ };
648
+ tipTextFontSize: {
649
+ type?: import("vue").PropType<string>;
650
+ default?: string;
651
+ };
652
+ boxplotColor: {
653
+ type?: import("vue").PropType<string>;
654
+ default?: string;
655
+ };
656
+ boxplotBorderColor: {
657
+ type?: import("vue").PropType<string>;
658
+ default?: string;
659
+ };
660
+ position: {
661
+ type?: import("vue").PropType<string>;
662
+ default?: string;
663
+ };
664
+ zIndex: {
665
+ type?: import("vue").PropType<number>;
666
+ default?: number;
667
+ };
668
+ isShow: {
669
+ type?: import("vue").PropType<boolean>;
670
+ default?: boolean;
671
+ };
672
+ isRender: {
673
+ type?: import("vue").PropType<boolean>;
674
+ default?: boolean;
675
+ };
676
+ events: {
677
+ type?: import("vue").PropType<import('../../utils/props').Events>;
678
+ default?: import('../../utils/props').Events;
679
+ };
680
+ requestUrl: {
681
+ type?: import("vue").PropType<string>;
682
+ default?: string;
683
+ };
684
+ requestMethod: {
685
+ type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
686
+ default?: import('../../utils/props').RequestMethod;
687
+ };
688
+ requestHeaders: {
689
+ type?: import("vue").PropType<string>;
690
+ default?: string;
691
+ };
692
+ isOpenRequestTimer: {
693
+ type?: import("vue").PropType<boolean>;
694
+ default?: boolean;
695
+ };
696
+ isViewRedrawing: {
697
+ type?: import("vue").PropType<boolean>;
698
+ default?: boolean;
699
+ };
700
+ requestInterval: {
701
+ type?: import("vue").PropType<number>;
702
+ default?: number;
703
+ };
704
+ requestParams: {
705
+ type?: import("vue").PropType<import('../../utils/props').RequestParams>;
706
+ default?: import('../../utils/props').RequestParams;
707
+ };
708
+ requestSort: {
709
+ type?: import("vue").PropType<number>;
710
+ default?: number;
711
+ };
712
+ dataType: {
713
+ type?: import("vue").PropType<"indicator" | "request" | "component" | "static">;
714
+ default?: "indicator" | "request" | "component" | "static";
715
+ };
716
+ scale?: {
717
+ type?: import("vue").PropType<number>;
718
+ default?: number;
719
+ };
720
+ requestParamsMode: {
721
+ type?: import("vue").PropType<"2" | "1">;
722
+ default?: "2" | "1";
723
+ };
724
+ customRequestParams: {
725
+ type?: import("vue").PropType<string>;
726
+ default?: string;
727
+ };
728
+ dataSetParam?: {
729
+ type?: import("vue").PropType<any>;
730
+ default?: any;
731
+ };
732
+ requestType?: {
733
+ type?: import("vue").PropType<any>;
734
+ default?: any;
735
+ };
736
+ componentDoc?: {
737
+ type?: import("vue").PropType<null>;
738
+ default?: null;
739
+ };
740
+ extendData?: {
741
+ type?: import("vue").PropType<{
742
+ [key: string]: any;
743
+ }>;
744
+ default?: {
745
+ [key: string]: any;
746
+ };
747
+ };
748
+ isShowIndDetail?: {
749
+ type?: import("vue").PropType<boolean>;
750
+ default?: boolean;
751
+ };
752
+ isShowTrend?: {
753
+ type?: import("vue").PropType<boolean>;
754
+ default?: boolean;
755
+ };
756
+ indDetailIconColor?: {
757
+ type?: import("vue").PropType<string>;
758
+ default?: string;
759
+ };
760
+ indDetailIconFontSize?: {
761
+ type?: import("vue").PropType<string>;
762
+ default?: string;
763
+ };
764
+ };
765
+ export declare const boxplotEvents: string[];