@ecan-bi/datav 1.5.96 → 1.6.1

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