@ecan-bi/datav 1.6.12 → 1.6.15
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.
- package/dist/index.es.js +22596 -23544
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +95 -93
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/types/graph/bar/Bar.vue.d.ts +1 -189
- package/types/graph/bar/index.d.ts +1 -189
- package/types/graph/budget/Budget.vue.d.ts +4 -4
- package/types/graph/budget/index.d.ts +4 -4
- package/types/graph/budget/props.d.ts +2 -2
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +5 -151
- package/types/graph/combo-graph/index.d.ts +5 -151
- package/types/graph/combo-graph/props.d.ts +2 -2
- package/types/graph/line/Line.vue.d.ts +1 -172
- package/types/graph/line/index.d.ts +1 -172
- package/types/graph/pie/Pie.vue.d.ts +5 -104
- package/types/graph/pie/index.d.ts +5 -104
- package/types/graph/pie/props.d.ts +2 -2
- package/types/graph/radar/Radar.vue.d.ts +1 -92
- package/types/graph/radar/index.d.ts +1 -92
- package/types/graph/scatter/Scatter.vue.d.ts +5 -196
- package/types/graph/scatter/index.d.ts +5 -196
- package/types/graph/scatter/props.d.ts +2 -2
- package/types/text/text/Text.vue.d.ts +176 -5
- package/types/text/text/index.d.ts +176 -5
- package/types/text/text/props.d.ts +2 -2
- package/types/utils/constant.d.ts +1 -0
|
@@ -60,8 +60,8 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
60
60
|
default?: boolean;
|
|
61
61
|
};
|
|
62
62
|
tooltipTrigger: {
|
|
63
|
-
type?: import("vue").PropType<"none" | "
|
|
64
|
-
default?: "none" | "
|
|
63
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
64
|
+
default?: "none" | "item" | "axis";
|
|
65
65
|
};
|
|
66
66
|
tooltipTextStyleColor: {
|
|
67
67
|
type?: import("vue").PropType<string>;
|
|
@@ -440,106 +440,7 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
440
440
|
default?: string;
|
|
441
441
|
};
|
|
442
442
|
}, {
|
|
443
|
-
option:
|
|
444
|
-
textStyle: {
|
|
445
|
-
fontFamily: string;
|
|
446
|
-
};
|
|
447
|
-
toolbox: {
|
|
448
|
-
show: boolean;
|
|
449
|
-
left: "left" | "center" | "right";
|
|
450
|
-
top: "top" | "bottom" | "middle";
|
|
451
|
-
itemSize: number;
|
|
452
|
-
itemGap: number;
|
|
453
|
-
orient: "vertical" | "horizontal";
|
|
454
|
-
feature: {
|
|
455
|
-
myDownload: {
|
|
456
|
-
show: boolean;
|
|
457
|
-
title: string;
|
|
458
|
-
icon: string;
|
|
459
|
-
onclick(): void;
|
|
460
|
-
};
|
|
461
|
-
myDataZoom: {
|
|
462
|
-
show: boolean;
|
|
463
|
-
title: string;
|
|
464
|
-
icon: string;
|
|
465
|
-
onclick(): void;
|
|
466
|
-
};
|
|
467
|
-
myInfo: {
|
|
468
|
-
show: boolean;
|
|
469
|
-
title: string;
|
|
470
|
-
icon: string;
|
|
471
|
-
onclick(): void;
|
|
472
|
-
};
|
|
473
|
-
mySource: {
|
|
474
|
-
show: boolean;
|
|
475
|
-
title: string;
|
|
476
|
-
icon: string;
|
|
477
|
-
onclick(): void;
|
|
478
|
-
};
|
|
479
|
-
};
|
|
480
|
-
};
|
|
481
|
-
title: {
|
|
482
|
-
text: string;
|
|
483
|
-
subtext: string;
|
|
484
|
-
textStyle: {
|
|
485
|
-
fontSize: string;
|
|
486
|
-
fontWeight: number;
|
|
487
|
-
color: string;
|
|
488
|
-
};
|
|
489
|
-
left: "left" | "center" | "right";
|
|
490
|
-
};
|
|
491
|
-
grid: {
|
|
492
|
-
top: string;
|
|
493
|
-
bottom: string;
|
|
494
|
-
left: string;
|
|
495
|
-
right: string;
|
|
496
|
-
containLabel: boolean;
|
|
497
|
-
};
|
|
498
|
-
tooltip: {
|
|
499
|
-
show: boolean;
|
|
500
|
-
trigger: "none" | "axis" | "item";
|
|
501
|
-
formatter: (params: any) => any;
|
|
502
|
-
textStyle: {
|
|
503
|
-
color: string;
|
|
504
|
-
};
|
|
505
|
-
position: string;
|
|
506
|
-
};
|
|
507
|
-
legend: {
|
|
508
|
-
[x: string]: any;
|
|
509
|
-
};
|
|
510
|
-
color: string[];
|
|
511
|
-
series: {
|
|
512
|
-
data: any;
|
|
513
|
-
type: string;
|
|
514
|
-
radius: string[];
|
|
515
|
-
center: string[];
|
|
516
|
-
roseType: "" | "area" | "radius";
|
|
517
|
-
avoidLabelOverlap: boolean;
|
|
518
|
-
minAngle: number;
|
|
519
|
-
label: {
|
|
520
|
-
show: boolean;
|
|
521
|
-
color: string;
|
|
522
|
-
fontSize: number;
|
|
523
|
-
position: "center" | "inside" | "outside";
|
|
524
|
-
formatter: string;
|
|
525
|
-
width: number;
|
|
526
|
-
overflow: "none" | "truncate" | "break";
|
|
527
|
-
};
|
|
528
|
-
labelLine: {
|
|
529
|
-
show: boolean;
|
|
530
|
-
length: number;
|
|
531
|
-
length2: number;
|
|
532
|
-
};
|
|
533
|
-
emphasis: {
|
|
534
|
-
itemStyle: {
|
|
535
|
-
shadowBlur: number;
|
|
536
|
-
shadowOffsetX: number;
|
|
537
|
-
shadowColor: string;
|
|
538
|
-
};
|
|
539
|
-
label: {};
|
|
540
|
-
};
|
|
541
|
-
}[];
|
|
542
|
-
}>;
|
|
443
|
+
option: any;
|
|
543
444
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
544
445
|
click: () => void;
|
|
545
446
|
onClose: () => void;
|
|
@@ -609,8 +510,8 @@ export declare const EcanPie: import("../../utils/withInstall").SFCWithInstall<i
|
|
|
609
510
|
default?: boolean;
|
|
610
511
|
};
|
|
611
512
|
tooltipTrigger: {
|
|
612
|
-
type?: import("vue").PropType<"none" | "
|
|
613
|
-
default?: "none" | "
|
|
513
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
514
|
+
default?: "none" | "item" | "axis";
|
|
614
515
|
};
|
|
615
516
|
tooltipTextStyleColor: {
|
|
616
517
|
type?: import("vue").PropType<string>;
|
|
@@ -139,8 +139,8 @@ export declare const pieComponentProps: {
|
|
|
139
139
|
default?: boolean;
|
|
140
140
|
};
|
|
141
141
|
tooltipTrigger: {
|
|
142
|
-
type?: import("vue").PropType<"none" | "
|
|
143
|
-
default?: "none" | "
|
|
142
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
143
|
+
default?: "none" | "item" | "axis";
|
|
144
144
|
};
|
|
145
145
|
tooltipTextStyleColor: {
|
|
146
146
|
type?: import("vue").PropType<string>;
|
|
@@ -414,98 +414,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
414
414
|
default?: string;
|
|
415
415
|
};
|
|
416
416
|
}, {
|
|
417
|
-
option:
|
|
418
|
-
textStyle: {
|
|
419
|
-
fontFamily: string;
|
|
420
|
-
};
|
|
421
|
-
toolbox: {
|
|
422
|
-
show: boolean;
|
|
423
|
-
left: string;
|
|
424
|
-
top: string;
|
|
425
|
-
itemSize: number;
|
|
426
|
-
itemGap: number;
|
|
427
|
-
feature: {
|
|
428
|
-
myDownload: {
|
|
429
|
-
show: boolean;
|
|
430
|
-
title: string;
|
|
431
|
-
icon: string;
|
|
432
|
-
onclick(): void;
|
|
433
|
-
};
|
|
434
|
-
myDataZoom: {
|
|
435
|
-
show: boolean;
|
|
436
|
-
title: string;
|
|
437
|
-
icon: string;
|
|
438
|
-
onclick(): void;
|
|
439
|
-
};
|
|
440
|
-
myInfo: {
|
|
441
|
-
show: boolean;
|
|
442
|
-
title: string;
|
|
443
|
-
icon: string;
|
|
444
|
-
onclick(): void;
|
|
445
|
-
};
|
|
446
|
-
mySource: {
|
|
447
|
-
show: boolean;
|
|
448
|
-
title: string;
|
|
449
|
-
icon: string;
|
|
450
|
-
onclick(): void;
|
|
451
|
-
};
|
|
452
|
-
};
|
|
453
|
-
};
|
|
454
|
-
title: {
|
|
455
|
-
text: string;
|
|
456
|
-
subText: string;
|
|
457
|
-
textStyle: {
|
|
458
|
-
fontSize: string;
|
|
459
|
-
fontWeight: number;
|
|
460
|
-
color: string;
|
|
461
|
-
};
|
|
462
|
-
left: string;
|
|
463
|
-
};
|
|
464
|
-
color: string[];
|
|
465
|
-
tooltip: {
|
|
466
|
-
trigger: string;
|
|
467
|
-
textStyle: {
|
|
468
|
-
fontSize: number;
|
|
469
|
-
};
|
|
470
|
-
show: boolean;
|
|
471
|
-
formatter: (params: any) => string;
|
|
472
|
-
position: string;
|
|
473
|
-
};
|
|
474
|
-
radar: {
|
|
475
|
-
indicator: any[];
|
|
476
|
-
axisName: {
|
|
477
|
-
color: string;
|
|
478
|
-
};
|
|
479
|
-
};
|
|
480
|
-
legend: {
|
|
481
|
-
type: string;
|
|
482
|
-
width: any;
|
|
483
|
-
height: any;
|
|
484
|
-
show: boolean;
|
|
485
|
-
orient: string;
|
|
486
|
-
top: string;
|
|
487
|
-
left: string;
|
|
488
|
-
textStyle: {
|
|
489
|
-
lineHeight: number;
|
|
490
|
-
rich: {
|
|
491
|
-
text: {
|
|
492
|
-
width: any;
|
|
493
|
-
color: string;
|
|
494
|
-
fontSize: string | number;
|
|
495
|
-
};
|
|
496
|
-
};
|
|
497
|
-
};
|
|
498
|
-
itemHeight: number;
|
|
499
|
-
itemWidth: number;
|
|
500
|
-
itemGap: number;
|
|
501
|
-
data: {
|
|
502
|
-
name: any;
|
|
503
|
-
icon: string;
|
|
504
|
-
}[];
|
|
505
|
-
formatter: (name: string) => string;
|
|
506
|
-
};
|
|
507
|
-
series: any[];
|
|
508
|
-
}>;
|
|
417
|
+
option: any;
|
|
509
418
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
510
419
|
click: (e: any) => void;
|
|
511
420
|
loading: import("vue").Ref<boolean>;
|
|
@@ -414,98 +414,7 @@ export declare const EcanRadar: import("../../utils/withInstall").SFCWithInstall
|
|
|
414
414
|
default?: string;
|
|
415
415
|
};
|
|
416
416
|
}, {
|
|
417
|
-
option:
|
|
418
|
-
textStyle: {
|
|
419
|
-
fontFamily: string;
|
|
420
|
-
};
|
|
421
|
-
toolbox: {
|
|
422
|
-
show: boolean;
|
|
423
|
-
left: string;
|
|
424
|
-
top: string;
|
|
425
|
-
itemSize: number;
|
|
426
|
-
itemGap: number;
|
|
427
|
-
feature: {
|
|
428
|
-
myDownload: {
|
|
429
|
-
show: boolean;
|
|
430
|
-
title: string;
|
|
431
|
-
icon: string;
|
|
432
|
-
onclick(): void;
|
|
433
|
-
};
|
|
434
|
-
myDataZoom: {
|
|
435
|
-
show: boolean;
|
|
436
|
-
title: string;
|
|
437
|
-
icon: string;
|
|
438
|
-
onclick(): void;
|
|
439
|
-
};
|
|
440
|
-
myInfo: {
|
|
441
|
-
show: boolean;
|
|
442
|
-
title: string;
|
|
443
|
-
icon: string;
|
|
444
|
-
onclick(): void;
|
|
445
|
-
};
|
|
446
|
-
mySource: {
|
|
447
|
-
show: boolean;
|
|
448
|
-
title: string;
|
|
449
|
-
icon: string;
|
|
450
|
-
onclick(): void;
|
|
451
|
-
};
|
|
452
|
-
};
|
|
453
|
-
};
|
|
454
|
-
title: {
|
|
455
|
-
text: string;
|
|
456
|
-
subText: string;
|
|
457
|
-
textStyle: {
|
|
458
|
-
fontSize: string;
|
|
459
|
-
fontWeight: number;
|
|
460
|
-
color: string;
|
|
461
|
-
};
|
|
462
|
-
left: string;
|
|
463
|
-
};
|
|
464
|
-
color: string[];
|
|
465
|
-
tooltip: {
|
|
466
|
-
trigger: string;
|
|
467
|
-
textStyle: {
|
|
468
|
-
fontSize: number;
|
|
469
|
-
};
|
|
470
|
-
show: boolean;
|
|
471
|
-
formatter: (params: any) => string;
|
|
472
|
-
position: string;
|
|
473
|
-
};
|
|
474
|
-
radar: {
|
|
475
|
-
indicator: any[];
|
|
476
|
-
axisName: {
|
|
477
|
-
color: string;
|
|
478
|
-
};
|
|
479
|
-
};
|
|
480
|
-
legend: {
|
|
481
|
-
type: string;
|
|
482
|
-
width: any;
|
|
483
|
-
height: any;
|
|
484
|
-
show: boolean;
|
|
485
|
-
orient: string;
|
|
486
|
-
top: string;
|
|
487
|
-
left: string;
|
|
488
|
-
textStyle: {
|
|
489
|
-
lineHeight: number;
|
|
490
|
-
rich: {
|
|
491
|
-
text: {
|
|
492
|
-
width: any;
|
|
493
|
-
color: string;
|
|
494
|
-
fontSize: string | number;
|
|
495
|
-
};
|
|
496
|
-
};
|
|
497
|
-
};
|
|
498
|
-
itemHeight: number;
|
|
499
|
-
itemWidth: number;
|
|
500
|
-
itemGap: number;
|
|
501
|
-
data: {
|
|
502
|
-
name: any;
|
|
503
|
-
icon: string;
|
|
504
|
-
}[];
|
|
505
|
-
formatter: (name: string) => string;
|
|
506
|
-
};
|
|
507
|
-
series: any[];
|
|
508
|
-
}>;
|
|
417
|
+
option: any;
|
|
509
418
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
510
419
|
click: (e: any) => void;
|
|
511
420
|
loading: import("vue").Ref<boolean>;
|
|
@@ -40,8 +40,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
40
|
default?: boolean;
|
|
41
41
|
};
|
|
42
42
|
tooltipTrigger: {
|
|
43
|
-
type?: import("vue").PropType<"none" | "
|
|
44
|
-
default?: "none" | "
|
|
43
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
44
|
+
default?: "none" | "item" | "axis";
|
|
45
45
|
};
|
|
46
46
|
tooltipFormatter: {
|
|
47
47
|
type?: import("vue").PropType<string>;
|
|
@@ -526,198 +526,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
526
526
|
default?: string;
|
|
527
527
|
};
|
|
528
528
|
}, {
|
|
529
|
-
option:
|
|
530
|
-
textStyle: {
|
|
531
|
-
fontFamily: string;
|
|
532
|
-
};
|
|
533
|
-
toolbox: {
|
|
534
|
-
show: boolean;
|
|
535
|
-
left: "left" | "center" | "right";
|
|
536
|
-
top: "top" | "bottom" | "middle";
|
|
537
|
-
itemSize: number;
|
|
538
|
-
itemGap: number;
|
|
539
|
-
feature: {
|
|
540
|
-
myDownload: {
|
|
541
|
-
show: boolean;
|
|
542
|
-
title: string;
|
|
543
|
-
icon: string;
|
|
544
|
-
onclick(): void;
|
|
545
|
-
};
|
|
546
|
-
myDataZoom: {
|
|
547
|
-
show: boolean;
|
|
548
|
-
title: string;
|
|
549
|
-
icon: string;
|
|
550
|
-
onclick(): void;
|
|
551
|
-
};
|
|
552
|
-
myInfo: {
|
|
553
|
-
show: boolean;
|
|
554
|
-
title: string;
|
|
555
|
-
icon: string;
|
|
556
|
-
onclick(): void;
|
|
557
|
-
};
|
|
558
|
-
mySource: {
|
|
559
|
-
show: boolean;
|
|
560
|
-
title: string;
|
|
561
|
-
icon: string;
|
|
562
|
-
onclick(): void;
|
|
563
|
-
};
|
|
564
|
-
};
|
|
565
|
-
};
|
|
566
|
-
title: {
|
|
567
|
-
text: string;
|
|
568
|
-
subtext: string;
|
|
569
|
-
textStyle: {
|
|
570
|
-
fontSize: string;
|
|
571
|
-
fontWeight: number;
|
|
572
|
-
color: string;
|
|
573
|
-
};
|
|
574
|
-
left: "left" | "center" | "right";
|
|
575
|
-
};
|
|
576
|
-
grid: {
|
|
577
|
-
top: string;
|
|
578
|
-
bottom: string;
|
|
579
|
-
left: string;
|
|
580
|
-
right: string;
|
|
581
|
-
containLabel: boolean;
|
|
582
|
-
};
|
|
583
|
-
color: string[];
|
|
584
|
-
xAxis: {
|
|
585
|
-
z: number;
|
|
586
|
-
splitLine: {
|
|
587
|
-
show: boolean;
|
|
588
|
-
lineStyle: {
|
|
589
|
-
color: string;
|
|
590
|
-
};
|
|
591
|
-
interval: number;
|
|
592
|
-
};
|
|
593
|
-
splitArea: {
|
|
594
|
-
show: boolean;
|
|
595
|
-
};
|
|
596
|
-
axisLabel: {
|
|
597
|
-
show: boolean;
|
|
598
|
-
fontSize: string;
|
|
599
|
-
color: string;
|
|
600
|
-
interval: number;
|
|
601
|
-
rotate: number;
|
|
602
|
-
width: number;
|
|
603
|
-
overflow: "none" | "truncate" | "break" | "breakAll";
|
|
604
|
-
formatter(value: string): any;
|
|
605
|
-
};
|
|
606
|
-
axisLine: {
|
|
607
|
-
lineStyle: {
|
|
608
|
-
color: string;
|
|
609
|
-
};
|
|
610
|
-
symbol: string[];
|
|
611
|
-
symbolSize: number[];
|
|
612
|
-
onZero: boolean;
|
|
613
|
-
};
|
|
614
|
-
axisTick: {
|
|
615
|
-
show: boolean;
|
|
616
|
-
};
|
|
617
|
-
name: string;
|
|
618
|
-
nameLocation: string;
|
|
619
|
-
nameTextStyle: {
|
|
620
|
-
fontSize: string;
|
|
621
|
-
color: string;
|
|
622
|
-
align: string;
|
|
623
|
-
};
|
|
624
|
-
inverse: boolean;
|
|
625
|
-
max: number;
|
|
626
|
-
min: number;
|
|
627
|
-
};
|
|
628
|
-
yAxis: {
|
|
629
|
-
z: number;
|
|
630
|
-
splitLine: {
|
|
631
|
-
show: boolean;
|
|
632
|
-
lineStyle: {
|
|
633
|
-
color: string;
|
|
634
|
-
type: "dashed" | "dotted" | "solid";
|
|
635
|
-
};
|
|
636
|
-
};
|
|
637
|
-
axisTick: {
|
|
638
|
-
show: boolean;
|
|
639
|
-
};
|
|
640
|
-
splitArea: {
|
|
641
|
-
show: boolean;
|
|
642
|
-
};
|
|
643
|
-
axisLabel: {
|
|
644
|
-
show: boolean;
|
|
645
|
-
fontSize: string;
|
|
646
|
-
color: string;
|
|
647
|
-
formatter(value: string): any;
|
|
648
|
-
};
|
|
649
|
-
axisLine: {
|
|
650
|
-
show: boolean;
|
|
651
|
-
lineStyle: {
|
|
652
|
-
color: string;
|
|
653
|
-
};
|
|
654
|
-
symbol: string[];
|
|
655
|
-
symbolSize: number[];
|
|
656
|
-
onZero: boolean;
|
|
657
|
-
};
|
|
658
|
-
name: string;
|
|
659
|
-
nameLocation: string;
|
|
660
|
-
nameTextStyle: {
|
|
661
|
-
fontSize: string;
|
|
662
|
-
color: string;
|
|
663
|
-
align: string;
|
|
664
|
-
};
|
|
665
|
-
inverse: boolean;
|
|
666
|
-
max: number;
|
|
667
|
-
min: number;
|
|
668
|
-
};
|
|
669
|
-
tooltip: {
|
|
670
|
-
show: boolean;
|
|
671
|
-
trigger: "none" | "axis" | "item";
|
|
672
|
-
formatter(params: any): any;
|
|
673
|
-
axisPointer: {
|
|
674
|
-
type: string;
|
|
675
|
-
};
|
|
676
|
-
textStyle: {
|
|
677
|
-
fontSize: number;
|
|
678
|
-
};
|
|
679
|
-
position: string;
|
|
680
|
-
};
|
|
681
|
-
legend: {
|
|
682
|
-
show: boolean;
|
|
683
|
-
orient: "vertical" | "horizontal";
|
|
684
|
-
top: "top" | "bottom" | "middle";
|
|
685
|
-
left: "left" | "center" | "right";
|
|
686
|
-
textStyle: {
|
|
687
|
-
color: string;
|
|
688
|
-
fontSize: number;
|
|
689
|
-
};
|
|
690
|
-
};
|
|
691
|
-
series: {
|
|
692
|
-
data: {
|
|
693
|
-
[x: string]: any;
|
|
694
|
-
}[];
|
|
695
|
-
type: string;
|
|
696
|
-
symbolSize: number;
|
|
697
|
-
itemStyle: {
|
|
698
|
-
color: string;
|
|
699
|
-
};
|
|
700
|
-
label: {
|
|
701
|
-
show: boolean;
|
|
702
|
-
fontSize: string;
|
|
703
|
-
position: "top" | "left" | "right" | "bottom" | "inside";
|
|
704
|
-
color: string;
|
|
705
|
-
width: number;
|
|
706
|
-
overflow: "none" | "truncate" | "break";
|
|
707
|
-
formatter: (params: any) => string;
|
|
708
|
-
};
|
|
709
|
-
markLine: {
|
|
710
|
-
symbol: string[];
|
|
711
|
-
data: any[];
|
|
712
|
-
} | {
|
|
713
|
-
data: any[];
|
|
714
|
-
symbol?: undefined;
|
|
715
|
-
};
|
|
716
|
-
markArea: {
|
|
717
|
-
data: any[];
|
|
718
|
-
};
|
|
719
|
-
}[];
|
|
720
|
-
}>;
|
|
529
|
+
option: any;
|
|
721
530
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
722
531
|
click: () => void;
|
|
723
532
|
loading: import("vue").Ref<boolean>;
|
|
@@ -767,8 +576,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
767
576
|
default?: boolean;
|
|
768
577
|
};
|
|
769
578
|
tooltipTrigger: {
|
|
770
|
-
type?: import("vue").PropType<"none" | "
|
|
771
|
-
default?: "none" | "
|
|
579
|
+
type?: import("vue").PropType<"none" | "item" | "axis">;
|
|
580
|
+
default?: "none" | "item" | "axis";
|
|
772
581
|
};
|
|
773
582
|
tooltipFormatter: {
|
|
774
583
|
type?: import("vue").PropType<string>;
|