@univerjs-pro/engine-chart 1.0.0-alpha.5 → 1.0.0-alpha.7
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/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/es/facade.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/facade.js +1 -1
- package/lib/index.js +1 -1
- package/lib/types/chart-builder/chart-color.d.ts +49 -0
- package/lib/types/chart-builder/chart-types.d.ts +38 -11
- package/lib/types/chart-builder/configuration/assertions.d.ts +2 -0
- package/lib/types/chart-builder/configuration/auto-gradient-fill.d.ts +4 -0
- package/lib/types/chart-builder/configuration/chart-config-operation.d.ts +1 -0
- package/lib/types/chart-builder/configuration/index.d.ts +1 -0
- package/lib/types/chart-builder/configuration/pie.d.ts +5 -1
- package/lib/types/chart-builder/conversion/chart-config-converter.d.ts +1 -0
- package/lib/types/chart-builder/index.d.ts +2 -0
- package/lib/types/facade/builders/f-area-chart-builder.d.ts +2 -2
- package/lib/types/facade/builders/f-boxplot-chart-builder.d.ts +5 -0
- package/lib/types/facade/builders/f-bubble-chart-builder.d.ts +2 -2
- package/lib/types/facade/builders/f-line-chart-builder.d.ts +2 -2
- package/lib/types/facade/builders/f-pie-chart-builder.d.ts +42 -1
- package/lib/types/facade/builders/f-relation-chart-builder.d.ts +38 -0
- package/lib/types/facade/builders/f-scatter-chart-builder.d.ts +2 -2
- package/lib/types/facade/builders/index.d.ts +1 -0
- package/lib/types/facade/chart-builder-type-map.d.ts +2 -2
- package/lib/types/facade/f-cartesian-chart-builder.d.ts +14 -4
- package/lib/types/facade/f-chart-builder-base.d.ts +31 -0
- package/lib/types/index.d.ts +4 -4
- package/lib/types/models/chart-element-edit-overlay/chart-element-edit-overlay.d.ts +2 -1
- package/lib/types/models/chart-model.d.ts +156 -138
- package/lib/types/models/constants/default-chart-style.d.ts +2 -0
- package/lib/types/models/echart-to-chart-model-init.d.ts +2 -1
- package/lib/types/models/mode-converter/render-spec-operators/auto-gradient-presets.d.ts +5 -0
- package/lib/types/models/mode-converter/render-spec-operators/chart-color.d.ts +23 -0
- package/lib/types/models/mode-converter/render-spec-operators/rich-text-inheritance.operator.d.ts +2 -0
- package/lib/types/types.d.ts +15 -6
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +1 -1
- package/package.json +5 -5
|
@@ -373,7 +373,7 @@ export declare class ChartModel extends Disposable {
|
|
|
373
373
|
format?: string | undefined;
|
|
374
374
|
} | undefined;
|
|
375
375
|
allSeriesStyle?: {
|
|
376
|
-
color?: import("@univerjs/core").Nullable<
|
|
376
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
377
377
|
point?: {
|
|
378
378
|
shape?: import("..").LinePointShape | undefined;
|
|
379
379
|
size?: number | undefined;
|
|
@@ -410,7 +410,7 @@ export declare class ChartModel extends Disposable {
|
|
|
410
410
|
positive?: {
|
|
411
411
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
412
412
|
rightYAxis?: boolean | undefined;
|
|
413
|
-
color?: import("@univerjs/core").Nullable<
|
|
413
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
414
414
|
fillOpacity?: number | undefined;
|
|
415
415
|
border?: {
|
|
416
416
|
opacity?: number | undefined;
|
|
@@ -444,10 +444,10 @@ export declare class ChartModel extends Disposable {
|
|
|
444
444
|
} | undefined;
|
|
445
445
|
dataPoints?: {
|
|
446
446
|
[x: number]: {
|
|
447
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
447
448
|
fillOpacity?: number | undefined;
|
|
448
|
-
shape?: import("..").LinePointShape | undefined;
|
|
449
449
|
size?: number | undefined;
|
|
450
|
-
|
|
450
|
+
shape?: import("..").LinePointShape | undefined;
|
|
451
451
|
} | undefined;
|
|
452
452
|
} | undefined;
|
|
453
453
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -456,7 +456,7 @@ export declare class ChartModel extends Disposable {
|
|
|
456
456
|
negative?: {
|
|
457
457
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
458
458
|
rightYAxis?: boolean | undefined;
|
|
459
|
-
color?: import("@univerjs/core").Nullable<
|
|
459
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
460
460
|
fillOpacity?: number | undefined;
|
|
461
461
|
border?: {
|
|
462
462
|
opacity?: number | undefined;
|
|
@@ -490,10 +490,10 @@ export declare class ChartModel extends Disposable {
|
|
|
490
490
|
} | undefined;
|
|
491
491
|
dataPoints?: {
|
|
492
492
|
[x: number]: {
|
|
493
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
493
494
|
fillOpacity?: number | undefined;
|
|
494
|
-
shape?: import("..").LinePointShape | undefined;
|
|
495
495
|
size?: number | undefined;
|
|
496
|
-
|
|
496
|
+
shape?: import("..").LinePointShape | undefined;
|
|
497
497
|
} | undefined;
|
|
498
498
|
} | undefined;
|
|
499
499
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -502,7 +502,7 @@ export declare class ChartModel extends Disposable {
|
|
|
502
502
|
subtotal?: {
|
|
503
503
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
504
504
|
rightYAxis?: boolean | undefined;
|
|
505
|
-
color?: import("@univerjs/core").Nullable<
|
|
505
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
506
506
|
fillOpacity?: number | undefined;
|
|
507
507
|
border?: {
|
|
508
508
|
opacity?: number | undefined;
|
|
@@ -536,10 +536,10 @@ export declare class ChartModel extends Disposable {
|
|
|
536
536
|
} | undefined;
|
|
537
537
|
dataPoints?: {
|
|
538
538
|
[x: number]: {
|
|
539
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
539
540
|
fillOpacity?: number | undefined;
|
|
540
|
-
shape?: import("..").LinePointShape | undefined;
|
|
541
541
|
size?: number | undefined;
|
|
542
|
-
|
|
542
|
+
shape?: import("..").LinePointShape | undefined;
|
|
543
543
|
} | undefined;
|
|
544
544
|
} | undefined;
|
|
545
545
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -551,7 +551,7 @@ export declare class ChartModel extends Disposable {
|
|
|
551
551
|
[x: string]: {
|
|
552
552
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
553
553
|
rightYAxis?: boolean | undefined;
|
|
554
|
-
color?: import("@univerjs/core").Nullable<
|
|
554
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
555
555
|
fillOpacity?: number | undefined;
|
|
556
556
|
border?: {
|
|
557
557
|
opacity?: number | undefined;
|
|
@@ -585,17 +585,17 @@ export declare class ChartModel extends Disposable {
|
|
|
585
585
|
} | undefined;
|
|
586
586
|
dataPoints?: {
|
|
587
587
|
[x: number]: {
|
|
588
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
588
589
|
fillOpacity?: number | undefined;
|
|
589
|
-
shape?: import("..").LinePointShape | undefined;
|
|
590
590
|
size?: number | undefined;
|
|
591
|
-
|
|
591
|
+
shape?: import("..").LinePointShape | undefined;
|
|
592
592
|
} | undefined;
|
|
593
593
|
} | undefined;
|
|
594
594
|
waterfall?: {
|
|
595
595
|
positive?: {
|
|
596
596
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
597
597
|
rightYAxis?: boolean | undefined;
|
|
598
|
-
color?: import("@univerjs/core").Nullable<
|
|
598
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
599
599
|
fillOpacity?: number | undefined;
|
|
600
600
|
border?: {
|
|
601
601
|
opacity?: number | undefined;
|
|
@@ -629,10 +629,10 @@ export declare class ChartModel extends Disposable {
|
|
|
629
629
|
} | undefined;
|
|
630
630
|
dataPoints?: {
|
|
631
631
|
[x: number]: {
|
|
632
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
632
633
|
fillOpacity?: number | undefined;
|
|
633
|
-
shape?: import("..").LinePointShape | undefined;
|
|
634
634
|
size?: number | undefined;
|
|
635
|
-
|
|
635
|
+
shape?: import("..").LinePointShape | undefined;
|
|
636
636
|
} | undefined;
|
|
637
637
|
} | undefined;
|
|
638
638
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -641,7 +641,7 @@ export declare class ChartModel extends Disposable {
|
|
|
641
641
|
negative?: {
|
|
642
642
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
643
643
|
rightYAxis?: boolean | undefined;
|
|
644
|
-
color?: import("@univerjs/core").Nullable<
|
|
644
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
645
645
|
fillOpacity?: number | undefined;
|
|
646
646
|
border?: {
|
|
647
647
|
opacity?: number | undefined;
|
|
@@ -675,10 +675,10 @@ export declare class ChartModel extends Disposable {
|
|
|
675
675
|
} | undefined;
|
|
676
676
|
dataPoints?: {
|
|
677
677
|
[x: number]: {
|
|
678
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
678
679
|
fillOpacity?: number | undefined;
|
|
679
|
-
shape?: import("..").LinePointShape | undefined;
|
|
680
680
|
size?: number | undefined;
|
|
681
|
-
|
|
681
|
+
shape?: import("..").LinePointShape | undefined;
|
|
682
682
|
} | undefined;
|
|
683
683
|
} | undefined;
|
|
684
684
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -687,7 +687,7 @@ export declare class ChartModel extends Disposable {
|
|
|
687
687
|
subtotal?: {
|
|
688
688
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
689
689
|
rightYAxis?: boolean | undefined;
|
|
690
|
-
color?: import("@univerjs/core").Nullable<
|
|
690
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
691
691
|
fillOpacity?: number | undefined;
|
|
692
692
|
border?: {
|
|
693
693
|
opacity?: number | undefined;
|
|
@@ -721,10 +721,10 @@ export declare class ChartModel extends Disposable {
|
|
|
721
721
|
} | undefined;
|
|
722
722
|
dataPoints?: {
|
|
723
723
|
[x: number]: {
|
|
724
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
724
725
|
fillOpacity?: number | undefined;
|
|
725
|
-
shape?: import("..").LinePointShape | undefined;
|
|
726
726
|
size?: number | undefined;
|
|
727
|
-
|
|
727
|
+
shape?: import("..").LinePointShape | undefined;
|
|
728
728
|
} | undefined;
|
|
729
729
|
} | undefined;
|
|
730
730
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -769,6 +769,12 @@ export declare class ChartModel extends Disposable {
|
|
|
769
769
|
valueScale?: number | undefined;
|
|
770
770
|
valueSuffix?: string | undefined;
|
|
771
771
|
digitalFixed?: number | undefined;
|
|
772
|
+
sliceStyles?: {
|
|
773
|
+
[x: number]: {
|
|
774
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
775
|
+
fillOpacity?: number | undefined;
|
|
776
|
+
} | undefined;
|
|
777
|
+
} | undefined;
|
|
772
778
|
} | undefined;
|
|
773
779
|
area?: {
|
|
774
780
|
lineStyle?: import("..").AreaLineStyle | undefined;
|
|
@@ -822,7 +828,7 @@ export declare class ChartModel extends Disposable {
|
|
|
822
828
|
lineStyle?: {
|
|
823
829
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
824
830
|
rightYAxis?: boolean | undefined;
|
|
825
|
-
color?: import("@univerjs/core").Nullable<
|
|
831
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
826
832
|
fillOpacity?: number | undefined;
|
|
827
833
|
border?: {
|
|
828
834
|
opacity?: number | undefined;
|
|
@@ -856,17 +862,17 @@ export declare class ChartModel extends Disposable {
|
|
|
856
862
|
} | undefined;
|
|
857
863
|
dataPoints?: {
|
|
858
864
|
[x: number]: {
|
|
865
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
859
866
|
fillOpacity?: number | undefined;
|
|
860
|
-
shape?: import("..").LinePointShape | undefined;
|
|
861
867
|
size?: number | undefined;
|
|
862
|
-
|
|
868
|
+
shape?: import("..").LinePointShape | undefined;
|
|
863
869
|
} | undefined;
|
|
864
870
|
} | undefined;
|
|
865
871
|
waterfall?: {
|
|
866
872
|
positive?: {
|
|
867
873
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
868
874
|
rightYAxis?: boolean | undefined;
|
|
869
|
-
color?: import("@univerjs/core").Nullable<
|
|
875
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
870
876
|
fillOpacity?: number | undefined;
|
|
871
877
|
border?: {
|
|
872
878
|
opacity?: number | undefined;
|
|
@@ -900,10 +906,10 @@ export declare class ChartModel extends Disposable {
|
|
|
900
906
|
} | undefined;
|
|
901
907
|
dataPoints?: {
|
|
902
908
|
[x: number]: {
|
|
909
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
903
910
|
fillOpacity?: number | undefined;
|
|
904
|
-
shape?: import("..").LinePointShape | undefined;
|
|
905
911
|
size?: number | undefined;
|
|
906
|
-
|
|
912
|
+
shape?: import("..").LinePointShape | undefined;
|
|
907
913
|
} | undefined;
|
|
908
914
|
} | undefined;
|
|
909
915
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -912,7 +918,7 @@ export declare class ChartModel extends Disposable {
|
|
|
912
918
|
negative?: {
|
|
913
919
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
914
920
|
rightYAxis?: boolean | undefined;
|
|
915
|
-
color?: import("@univerjs/core").Nullable<
|
|
921
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
916
922
|
fillOpacity?: number | undefined;
|
|
917
923
|
border?: {
|
|
918
924
|
opacity?: number | undefined;
|
|
@@ -946,10 +952,10 @@ export declare class ChartModel extends Disposable {
|
|
|
946
952
|
} | undefined;
|
|
947
953
|
dataPoints?: {
|
|
948
954
|
[x: number]: {
|
|
955
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
949
956
|
fillOpacity?: number | undefined;
|
|
950
|
-
shape?: import("..").LinePointShape | undefined;
|
|
951
957
|
size?: number | undefined;
|
|
952
|
-
|
|
958
|
+
shape?: import("..").LinePointShape | undefined;
|
|
953
959
|
} | undefined;
|
|
954
960
|
} | undefined;
|
|
955
961
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -958,7 +964,7 @@ export declare class ChartModel extends Disposable {
|
|
|
958
964
|
subtotal?: {
|
|
959
965
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
960
966
|
rightYAxis?: boolean | undefined;
|
|
961
|
-
color?: import("@univerjs/core").Nullable<
|
|
967
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
962
968
|
fillOpacity?: number | undefined;
|
|
963
969
|
border?: {
|
|
964
970
|
opacity?: number | undefined;
|
|
@@ -992,10 +998,10 @@ export declare class ChartModel extends Disposable {
|
|
|
992
998
|
} | undefined;
|
|
993
999
|
dataPoints?: {
|
|
994
1000
|
[x: number]: {
|
|
1001
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
995
1002
|
fillOpacity?: number | undefined;
|
|
996
|
-
shape?: import("..").LinePointShape | undefined;
|
|
997
1003
|
size?: number | undefined;
|
|
998
|
-
|
|
1004
|
+
shape?: import("..").LinePointShape | undefined;
|
|
999
1005
|
} | undefined;
|
|
1000
1006
|
} | undefined;
|
|
1001
1007
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1006,7 +1012,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1006
1012
|
barStyle?: {
|
|
1007
1013
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1008
1014
|
rightYAxis?: boolean | undefined;
|
|
1009
|
-
color?: import("@univerjs/core").Nullable<
|
|
1015
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1010
1016
|
fillOpacity?: number | undefined;
|
|
1011
1017
|
border?: {
|
|
1012
1018
|
opacity?: number | undefined;
|
|
@@ -1040,17 +1046,17 @@ export declare class ChartModel extends Disposable {
|
|
|
1040
1046
|
} | undefined;
|
|
1041
1047
|
dataPoints?: {
|
|
1042
1048
|
[x: number]: {
|
|
1049
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1043
1050
|
fillOpacity?: number | undefined;
|
|
1044
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1045
1051
|
size?: number | undefined;
|
|
1046
|
-
|
|
1052
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1047
1053
|
} | undefined;
|
|
1048
1054
|
} | undefined;
|
|
1049
1055
|
waterfall?: {
|
|
1050
1056
|
positive?: {
|
|
1051
1057
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1052
1058
|
rightYAxis?: boolean | undefined;
|
|
1053
|
-
color?: import("@univerjs/core").Nullable<
|
|
1059
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1054
1060
|
fillOpacity?: number | undefined;
|
|
1055
1061
|
border?: {
|
|
1056
1062
|
opacity?: number | undefined;
|
|
@@ -1084,10 +1090,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1084
1090
|
} | undefined;
|
|
1085
1091
|
dataPoints?: {
|
|
1086
1092
|
[x: number]: {
|
|
1093
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1087
1094
|
fillOpacity?: number | undefined;
|
|
1088
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1089
1095
|
size?: number | undefined;
|
|
1090
|
-
|
|
1096
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1091
1097
|
} | undefined;
|
|
1092
1098
|
} | undefined;
|
|
1093
1099
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1096,7 +1102,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1096
1102
|
negative?: {
|
|
1097
1103
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1098
1104
|
rightYAxis?: boolean | undefined;
|
|
1099
|
-
color?: import("@univerjs/core").Nullable<
|
|
1105
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1100
1106
|
fillOpacity?: number | undefined;
|
|
1101
1107
|
border?: {
|
|
1102
1108
|
opacity?: number | undefined;
|
|
@@ -1130,10 +1136,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1130
1136
|
} | undefined;
|
|
1131
1137
|
dataPoints?: {
|
|
1132
1138
|
[x: number]: {
|
|
1139
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1133
1140
|
fillOpacity?: number | undefined;
|
|
1134
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1135
1141
|
size?: number | undefined;
|
|
1136
|
-
|
|
1142
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1137
1143
|
} | undefined;
|
|
1138
1144
|
} | undefined;
|
|
1139
1145
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1142,7 +1148,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1142
1148
|
subtotal?: {
|
|
1143
1149
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1144
1150
|
rightYAxis?: boolean | undefined;
|
|
1145
|
-
color?: import("@univerjs/core").Nullable<
|
|
1151
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1146
1152
|
fillOpacity?: number | undefined;
|
|
1147
1153
|
border?: {
|
|
1148
1154
|
opacity?: number | undefined;
|
|
@@ -1176,10 +1182,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1176
1182
|
} | undefined;
|
|
1177
1183
|
dataPoints?: {
|
|
1178
1184
|
[x: number]: {
|
|
1185
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1179
1186
|
fillOpacity?: number | undefined;
|
|
1180
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1181
1187
|
size?: number | undefined;
|
|
1182
|
-
|
|
1188
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1183
1189
|
} | undefined;
|
|
1184
1190
|
} | undefined;
|
|
1185
1191
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1551,7 +1557,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1551
1557
|
format?: string | undefined;
|
|
1552
1558
|
} | undefined;
|
|
1553
1559
|
allSeriesStyle?: {
|
|
1554
|
-
color?: import("@univerjs/core").Nullable<
|
|
1560
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1555
1561
|
point?: {
|
|
1556
1562
|
shape?: import("..").LinePointShape | undefined;
|
|
1557
1563
|
size?: number | undefined;
|
|
@@ -1588,7 +1594,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1588
1594
|
positive?: {
|
|
1589
1595
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1590
1596
|
rightYAxis?: boolean | undefined;
|
|
1591
|
-
color?: import("@univerjs/core").Nullable<
|
|
1597
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1592
1598
|
fillOpacity?: number | undefined;
|
|
1593
1599
|
border?: {
|
|
1594
1600
|
opacity?: number | undefined;
|
|
@@ -1622,10 +1628,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1622
1628
|
} | undefined;
|
|
1623
1629
|
dataPoints?: {
|
|
1624
1630
|
[x: number]: {
|
|
1631
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1625
1632
|
fillOpacity?: number | undefined;
|
|
1626
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1627
1633
|
size?: number | undefined;
|
|
1628
|
-
|
|
1634
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1629
1635
|
} | undefined;
|
|
1630
1636
|
} | undefined;
|
|
1631
1637
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1634,7 +1640,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1634
1640
|
negative?: {
|
|
1635
1641
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1636
1642
|
rightYAxis?: boolean | undefined;
|
|
1637
|
-
color?: import("@univerjs/core").Nullable<
|
|
1643
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1638
1644
|
fillOpacity?: number | undefined;
|
|
1639
1645
|
border?: {
|
|
1640
1646
|
opacity?: number | undefined;
|
|
@@ -1668,10 +1674,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1668
1674
|
} | undefined;
|
|
1669
1675
|
dataPoints?: {
|
|
1670
1676
|
[x: number]: {
|
|
1677
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1671
1678
|
fillOpacity?: number | undefined;
|
|
1672
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1673
1679
|
size?: number | undefined;
|
|
1674
|
-
|
|
1680
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1675
1681
|
} | undefined;
|
|
1676
1682
|
} | undefined;
|
|
1677
1683
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1680,7 +1686,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1680
1686
|
subtotal?: {
|
|
1681
1687
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1682
1688
|
rightYAxis?: boolean | undefined;
|
|
1683
|
-
color?: import("@univerjs/core").Nullable<
|
|
1689
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1684
1690
|
fillOpacity?: number | undefined;
|
|
1685
1691
|
border?: {
|
|
1686
1692
|
opacity?: number | undefined;
|
|
@@ -1714,10 +1720,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1714
1720
|
} | undefined;
|
|
1715
1721
|
dataPoints?: {
|
|
1716
1722
|
[x: number]: {
|
|
1723
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1717
1724
|
fillOpacity?: number | undefined;
|
|
1718
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1719
1725
|
size?: number | undefined;
|
|
1720
|
-
|
|
1726
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1721
1727
|
} | undefined;
|
|
1722
1728
|
} | undefined;
|
|
1723
1729
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1729,7 +1735,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1729
1735
|
[x: string]: {
|
|
1730
1736
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1731
1737
|
rightYAxis?: boolean | undefined;
|
|
1732
|
-
color?: import("@univerjs/core").Nullable<
|
|
1738
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1733
1739
|
fillOpacity?: number | undefined;
|
|
1734
1740
|
border?: {
|
|
1735
1741
|
opacity?: number | undefined;
|
|
@@ -1763,17 +1769,17 @@ export declare class ChartModel extends Disposable {
|
|
|
1763
1769
|
} | undefined;
|
|
1764
1770
|
dataPoints?: {
|
|
1765
1771
|
[x: number]: {
|
|
1772
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1766
1773
|
fillOpacity?: number | undefined;
|
|
1767
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1768
1774
|
size?: number | undefined;
|
|
1769
|
-
|
|
1775
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1770
1776
|
} | undefined;
|
|
1771
1777
|
} | undefined;
|
|
1772
1778
|
waterfall?: {
|
|
1773
1779
|
positive?: {
|
|
1774
1780
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1775
1781
|
rightYAxis?: boolean | undefined;
|
|
1776
|
-
color?: import("@univerjs/core").Nullable<
|
|
1782
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1777
1783
|
fillOpacity?: number | undefined;
|
|
1778
1784
|
border?: {
|
|
1779
1785
|
opacity?: number | undefined;
|
|
@@ -1807,10 +1813,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1807
1813
|
} | undefined;
|
|
1808
1814
|
dataPoints?: {
|
|
1809
1815
|
[x: number]: {
|
|
1816
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1810
1817
|
fillOpacity?: number | undefined;
|
|
1811
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1812
1818
|
size?: number | undefined;
|
|
1813
|
-
|
|
1819
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1814
1820
|
} | undefined;
|
|
1815
1821
|
} | undefined;
|
|
1816
1822
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1819,7 +1825,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1819
1825
|
negative?: {
|
|
1820
1826
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1821
1827
|
rightYAxis?: boolean | undefined;
|
|
1822
|
-
color?: import("@univerjs/core").Nullable<
|
|
1828
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1823
1829
|
fillOpacity?: number | undefined;
|
|
1824
1830
|
border?: {
|
|
1825
1831
|
opacity?: number | undefined;
|
|
@@ -1853,10 +1859,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1853
1859
|
} | undefined;
|
|
1854
1860
|
dataPoints?: {
|
|
1855
1861
|
[x: number]: {
|
|
1862
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1856
1863
|
fillOpacity?: number | undefined;
|
|
1857
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1858
1864
|
size?: number | undefined;
|
|
1859
|
-
|
|
1865
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1860
1866
|
} | undefined;
|
|
1861
1867
|
} | undefined;
|
|
1862
1868
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1865,7 +1871,7 @@ export declare class ChartModel extends Disposable {
|
|
|
1865
1871
|
subtotal?: {
|
|
1866
1872
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
1867
1873
|
rightYAxis?: boolean | undefined;
|
|
1868
|
-
color?: import("@univerjs/core").Nullable<
|
|
1874
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1869
1875
|
fillOpacity?: number | undefined;
|
|
1870
1876
|
border?: {
|
|
1871
1877
|
opacity?: number | undefined;
|
|
@@ -1899,10 +1905,10 @@ export declare class ChartModel extends Disposable {
|
|
|
1899
1905
|
} | undefined;
|
|
1900
1906
|
dataPoints?: {
|
|
1901
1907
|
[x: number]: {
|
|
1908
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1902
1909
|
fillOpacity?: number | undefined;
|
|
1903
|
-
shape?: import("..").LinePointShape | undefined;
|
|
1904
1910
|
size?: number | undefined;
|
|
1905
|
-
|
|
1911
|
+
shape?: import("..").LinePointShape | undefined;
|
|
1906
1912
|
} | undefined;
|
|
1907
1913
|
} | undefined;
|
|
1908
1914
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -1947,6 +1953,12 @@ export declare class ChartModel extends Disposable {
|
|
|
1947
1953
|
valueScale?: number | undefined;
|
|
1948
1954
|
valueSuffix?: string | undefined;
|
|
1949
1955
|
digitalFixed?: number | undefined;
|
|
1956
|
+
sliceStyles?: {
|
|
1957
|
+
[x: number]: {
|
|
1958
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
1959
|
+
fillOpacity?: number | undefined;
|
|
1960
|
+
} | undefined;
|
|
1961
|
+
} | undefined;
|
|
1950
1962
|
} | undefined;
|
|
1951
1963
|
area?: {
|
|
1952
1964
|
lineStyle?: import("..").AreaLineStyle | undefined;
|
|
@@ -2000,7 +2012,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2000
2012
|
lineStyle?: {
|
|
2001
2013
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2002
2014
|
rightYAxis?: boolean | undefined;
|
|
2003
|
-
color?: import("@univerjs/core").Nullable<
|
|
2015
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2004
2016
|
fillOpacity?: number | undefined;
|
|
2005
2017
|
border?: {
|
|
2006
2018
|
opacity?: number | undefined;
|
|
@@ -2034,17 +2046,17 @@ export declare class ChartModel extends Disposable {
|
|
|
2034
2046
|
} | undefined;
|
|
2035
2047
|
dataPoints?: {
|
|
2036
2048
|
[x: number]: {
|
|
2049
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2037
2050
|
fillOpacity?: number | undefined;
|
|
2038
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2039
2051
|
size?: number | undefined;
|
|
2040
|
-
|
|
2052
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2041
2053
|
} | undefined;
|
|
2042
2054
|
} | undefined;
|
|
2043
2055
|
waterfall?: {
|
|
2044
2056
|
positive?: {
|
|
2045
2057
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2046
2058
|
rightYAxis?: boolean | undefined;
|
|
2047
|
-
color?: import("@univerjs/core").Nullable<
|
|
2059
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2048
2060
|
fillOpacity?: number | undefined;
|
|
2049
2061
|
border?: {
|
|
2050
2062
|
opacity?: number | undefined;
|
|
@@ -2078,10 +2090,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2078
2090
|
} | undefined;
|
|
2079
2091
|
dataPoints?: {
|
|
2080
2092
|
[x: number]: {
|
|
2093
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2081
2094
|
fillOpacity?: number | undefined;
|
|
2082
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2083
2095
|
size?: number | undefined;
|
|
2084
|
-
|
|
2096
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2085
2097
|
} | undefined;
|
|
2086
2098
|
} | undefined;
|
|
2087
2099
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2090,7 +2102,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2090
2102
|
negative?: {
|
|
2091
2103
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2092
2104
|
rightYAxis?: boolean | undefined;
|
|
2093
|
-
color?: import("@univerjs/core").Nullable<
|
|
2105
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2094
2106
|
fillOpacity?: number | undefined;
|
|
2095
2107
|
border?: {
|
|
2096
2108
|
opacity?: number | undefined;
|
|
@@ -2124,10 +2136,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2124
2136
|
} | undefined;
|
|
2125
2137
|
dataPoints?: {
|
|
2126
2138
|
[x: number]: {
|
|
2139
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2127
2140
|
fillOpacity?: number | undefined;
|
|
2128
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2129
2141
|
size?: number | undefined;
|
|
2130
|
-
|
|
2142
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2131
2143
|
} | undefined;
|
|
2132
2144
|
} | undefined;
|
|
2133
2145
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2136,7 +2148,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2136
2148
|
subtotal?: {
|
|
2137
2149
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2138
2150
|
rightYAxis?: boolean | undefined;
|
|
2139
|
-
color?: import("@univerjs/core").Nullable<
|
|
2151
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2140
2152
|
fillOpacity?: number | undefined;
|
|
2141
2153
|
border?: {
|
|
2142
2154
|
opacity?: number | undefined;
|
|
@@ -2170,10 +2182,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2170
2182
|
} | undefined;
|
|
2171
2183
|
dataPoints?: {
|
|
2172
2184
|
[x: number]: {
|
|
2185
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2173
2186
|
fillOpacity?: number | undefined;
|
|
2174
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2175
2187
|
size?: number | undefined;
|
|
2176
|
-
|
|
2188
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2177
2189
|
} | undefined;
|
|
2178
2190
|
} | undefined;
|
|
2179
2191
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2184,7 +2196,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2184
2196
|
barStyle?: {
|
|
2185
2197
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2186
2198
|
rightYAxis?: boolean | undefined;
|
|
2187
|
-
color?: import("@univerjs/core").Nullable<
|
|
2199
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2188
2200
|
fillOpacity?: number | undefined;
|
|
2189
2201
|
border?: {
|
|
2190
2202
|
opacity?: number | undefined;
|
|
@@ -2218,17 +2230,17 @@ export declare class ChartModel extends Disposable {
|
|
|
2218
2230
|
} | undefined;
|
|
2219
2231
|
dataPoints?: {
|
|
2220
2232
|
[x: number]: {
|
|
2233
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2221
2234
|
fillOpacity?: number | undefined;
|
|
2222
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2223
2235
|
size?: number | undefined;
|
|
2224
|
-
|
|
2236
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2225
2237
|
} | undefined;
|
|
2226
2238
|
} | undefined;
|
|
2227
2239
|
waterfall?: {
|
|
2228
2240
|
positive?: {
|
|
2229
2241
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2230
2242
|
rightYAxis?: boolean | undefined;
|
|
2231
|
-
color?: import("@univerjs/core").Nullable<
|
|
2243
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2232
2244
|
fillOpacity?: number | undefined;
|
|
2233
2245
|
border?: {
|
|
2234
2246
|
opacity?: number | undefined;
|
|
@@ -2262,10 +2274,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2262
2274
|
} | undefined;
|
|
2263
2275
|
dataPoints?: {
|
|
2264
2276
|
[x: number]: {
|
|
2277
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2265
2278
|
fillOpacity?: number | undefined;
|
|
2266
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2267
2279
|
size?: number | undefined;
|
|
2268
|
-
|
|
2280
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2269
2281
|
} | undefined;
|
|
2270
2282
|
} | undefined;
|
|
2271
2283
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2274,7 +2286,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2274
2286
|
negative?: {
|
|
2275
2287
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2276
2288
|
rightYAxis?: boolean | undefined;
|
|
2277
|
-
color?: import("@univerjs/core").Nullable<
|
|
2289
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2278
2290
|
fillOpacity?: number | undefined;
|
|
2279
2291
|
border?: {
|
|
2280
2292
|
opacity?: number | undefined;
|
|
@@ -2308,10 +2320,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2308
2320
|
} | undefined;
|
|
2309
2321
|
dataPoints?: {
|
|
2310
2322
|
[x: number]: {
|
|
2323
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2311
2324
|
fillOpacity?: number | undefined;
|
|
2312
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2313
2325
|
size?: number | undefined;
|
|
2314
|
-
|
|
2326
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2315
2327
|
} | undefined;
|
|
2316
2328
|
} | undefined;
|
|
2317
2329
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2320,7 +2332,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2320
2332
|
subtotal?: {
|
|
2321
2333
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2322
2334
|
rightYAxis?: boolean | undefined;
|
|
2323
|
-
color?: import("@univerjs/core").Nullable<
|
|
2335
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2324
2336
|
fillOpacity?: number | undefined;
|
|
2325
2337
|
border?: {
|
|
2326
2338
|
opacity?: number | undefined;
|
|
@@ -2354,10 +2366,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2354
2366
|
} | undefined;
|
|
2355
2367
|
dataPoints?: {
|
|
2356
2368
|
[x: number]: {
|
|
2369
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2357
2370
|
fillOpacity?: number | undefined;
|
|
2358
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2359
2371
|
size?: number | undefined;
|
|
2360
|
-
|
|
2372
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2361
2373
|
} | undefined;
|
|
2362
2374
|
} | undefined;
|
|
2363
2375
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2729,7 +2741,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2729
2741
|
format?: string | undefined;
|
|
2730
2742
|
} | undefined;
|
|
2731
2743
|
allSeriesStyle?: {
|
|
2732
|
-
color?: import("@univerjs/core").Nullable<
|
|
2744
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2733
2745
|
point?: {
|
|
2734
2746
|
shape?: import("..").LinePointShape | undefined;
|
|
2735
2747
|
size?: number | undefined;
|
|
@@ -2766,7 +2778,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2766
2778
|
positive?: {
|
|
2767
2779
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2768
2780
|
rightYAxis?: boolean | undefined;
|
|
2769
|
-
color?: import("@univerjs/core").Nullable<
|
|
2781
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2770
2782
|
fillOpacity?: number | undefined;
|
|
2771
2783
|
border?: {
|
|
2772
2784
|
opacity?: number | undefined;
|
|
@@ -2800,10 +2812,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2800
2812
|
} | undefined;
|
|
2801
2813
|
dataPoints?: {
|
|
2802
2814
|
[x: number]: {
|
|
2815
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2803
2816
|
fillOpacity?: number | undefined;
|
|
2804
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2805
2817
|
size?: number | undefined;
|
|
2806
|
-
|
|
2818
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2807
2819
|
} | undefined;
|
|
2808
2820
|
} | undefined;
|
|
2809
2821
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2812,7 +2824,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2812
2824
|
negative?: {
|
|
2813
2825
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2814
2826
|
rightYAxis?: boolean | undefined;
|
|
2815
|
-
color?: import("@univerjs/core").Nullable<
|
|
2827
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2816
2828
|
fillOpacity?: number | undefined;
|
|
2817
2829
|
border?: {
|
|
2818
2830
|
opacity?: number | undefined;
|
|
@@ -2846,10 +2858,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2846
2858
|
} | undefined;
|
|
2847
2859
|
dataPoints?: {
|
|
2848
2860
|
[x: number]: {
|
|
2861
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2849
2862
|
fillOpacity?: number | undefined;
|
|
2850
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2851
2863
|
size?: number | undefined;
|
|
2852
|
-
|
|
2864
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2853
2865
|
} | undefined;
|
|
2854
2866
|
} | undefined;
|
|
2855
2867
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2858,7 +2870,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2858
2870
|
subtotal?: {
|
|
2859
2871
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2860
2872
|
rightYAxis?: boolean | undefined;
|
|
2861
|
-
color?: import("@univerjs/core").Nullable<
|
|
2873
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2862
2874
|
fillOpacity?: number | undefined;
|
|
2863
2875
|
border?: {
|
|
2864
2876
|
opacity?: number | undefined;
|
|
@@ -2892,10 +2904,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2892
2904
|
} | undefined;
|
|
2893
2905
|
dataPoints?: {
|
|
2894
2906
|
[x: number]: {
|
|
2907
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2895
2908
|
fillOpacity?: number | undefined;
|
|
2896
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2897
2909
|
size?: number | undefined;
|
|
2898
|
-
|
|
2910
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2899
2911
|
} | undefined;
|
|
2900
2912
|
} | undefined;
|
|
2901
2913
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2907,7 +2919,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2907
2919
|
[x: string]: {
|
|
2908
2920
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2909
2921
|
rightYAxis?: boolean | undefined;
|
|
2910
|
-
color?: import("@univerjs/core").Nullable<
|
|
2922
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2911
2923
|
fillOpacity?: number | undefined;
|
|
2912
2924
|
border?: {
|
|
2913
2925
|
opacity?: number | undefined;
|
|
@@ -2941,17 +2953,17 @@ export declare class ChartModel extends Disposable {
|
|
|
2941
2953
|
} | undefined;
|
|
2942
2954
|
dataPoints?: {
|
|
2943
2955
|
[x: number]: {
|
|
2956
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2944
2957
|
fillOpacity?: number | undefined;
|
|
2945
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2946
2958
|
size?: number | undefined;
|
|
2947
|
-
|
|
2959
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2948
2960
|
} | undefined;
|
|
2949
2961
|
} | undefined;
|
|
2950
2962
|
waterfall?: {
|
|
2951
2963
|
positive?: {
|
|
2952
2964
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2953
2965
|
rightYAxis?: boolean | undefined;
|
|
2954
|
-
color?: import("@univerjs/core").Nullable<
|
|
2966
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2955
2967
|
fillOpacity?: number | undefined;
|
|
2956
2968
|
border?: {
|
|
2957
2969
|
opacity?: number | undefined;
|
|
@@ -2985,10 +2997,10 @@ export declare class ChartModel extends Disposable {
|
|
|
2985
2997
|
} | undefined;
|
|
2986
2998
|
dataPoints?: {
|
|
2987
2999
|
[x: number]: {
|
|
3000
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
2988
3001
|
fillOpacity?: number | undefined;
|
|
2989
|
-
shape?: import("..").LinePointShape | undefined;
|
|
2990
3002
|
size?: number | undefined;
|
|
2991
|
-
|
|
3003
|
+
shape?: import("..").LinePointShape | undefined;
|
|
2992
3004
|
} | undefined;
|
|
2993
3005
|
} | undefined;
|
|
2994
3006
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -2997,7 +3009,7 @@ export declare class ChartModel extends Disposable {
|
|
|
2997
3009
|
negative?: {
|
|
2998
3010
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
2999
3011
|
rightYAxis?: boolean | undefined;
|
|
3000
|
-
color?: import("@univerjs/core").Nullable<
|
|
3012
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3001
3013
|
fillOpacity?: number | undefined;
|
|
3002
3014
|
border?: {
|
|
3003
3015
|
opacity?: number | undefined;
|
|
@@ -3031,10 +3043,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3031
3043
|
} | undefined;
|
|
3032
3044
|
dataPoints?: {
|
|
3033
3045
|
[x: number]: {
|
|
3046
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3034
3047
|
fillOpacity?: number | undefined;
|
|
3035
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3036
3048
|
size?: number | undefined;
|
|
3037
|
-
|
|
3049
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3038
3050
|
} | undefined;
|
|
3039
3051
|
} | undefined;
|
|
3040
3052
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -3043,7 +3055,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3043
3055
|
subtotal?: {
|
|
3044
3056
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3045
3057
|
rightYAxis?: boolean | undefined;
|
|
3046
|
-
color?: import("@univerjs/core").Nullable<
|
|
3058
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3047
3059
|
fillOpacity?: number | undefined;
|
|
3048
3060
|
border?: {
|
|
3049
3061
|
opacity?: number | undefined;
|
|
@@ -3077,10 +3089,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3077
3089
|
} | undefined;
|
|
3078
3090
|
dataPoints?: {
|
|
3079
3091
|
[x: number]: {
|
|
3092
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3080
3093
|
fillOpacity?: number | undefined;
|
|
3081
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3082
3094
|
size?: number | undefined;
|
|
3083
|
-
|
|
3095
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3084
3096
|
} | undefined;
|
|
3085
3097
|
} | undefined;
|
|
3086
3098
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -3125,6 +3137,12 @@ export declare class ChartModel extends Disposable {
|
|
|
3125
3137
|
valueScale?: number | undefined;
|
|
3126
3138
|
valueSuffix?: string | undefined;
|
|
3127
3139
|
digitalFixed?: number | undefined;
|
|
3140
|
+
sliceStyles?: {
|
|
3141
|
+
[x: number]: {
|
|
3142
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3143
|
+
fillOpacity?: number | undefined;
|
|
3144
|
+
} | undefined;
|
|
3145
|
+
} | undefined;
|
|
3128
3146
|
} | undefined;
|
|
3129
3147
|
area?: {
|
|
3130
3148
|
lineStyle?: import("..").AreaLineStyle | undefined;
|
|
@@ -3178,7 +3196,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3178
3196
|
lineStyle?: {
|
|
3179
3197
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3180
3198
|
rightYAxis?: boolean | undefined;
|
|
3181
|
-
color?: import("@univerjs/core").Nullable<
|
|
3199
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3182
3200
|
fillOpacity?: number | undefined;
|
|
3183
3201
|
border?: {
|
|
3184
3202
|
opacity?: number | undefined;
|
|
@@ -3212,17 +3230,17 @@ export declare class ChartModel extends Disposable {
|
|
|
3212
3230
|
} | undefined;
|
|
3213
3231
|
dataPoints?: {
|
|
3214
3232
|
[x: number]: {
|
|
3233
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3215
3234
|
fillOpacity?: number | undefined;
|
|
3216
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3217
3235
|
size?: number | undefined;
|
|
3218
|
-
|
|
3236
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3219
3237
|
} | undefined;
|
|
3220
3238
|
} | undefined;
|
|
3221
3239
|
waterfall?: {
|
|
3222
3240
|
positive?: {
|
|
3223
3241
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3224
3242
|
rightYAxis?: boolean | undefined;
|
|
3225
|
-
color?: import("@univerjs/core").Nullable<
|
|
3243
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3226
3244
|
fillOpacity?: number | undefined;
|
|
3227
3245
|
border?: {
|
|
3228
3246
|
opacity?: number | undefined;
|
|
@@ -3256,10 +3274,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3256
3274
|
} | undefined;
|
|
3257
3275
|
dataPoints?: {
|
|
3258
3276
|
[x: number]: {
|
|
3277
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3259
3278
|
fillOpacity?: number | undefined;
|
|
3260
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3261
3279
|
size?: number | undefined;
|
|
3262
|
-
|
|
3280
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3263
3281
|
} | undefined;
|
|
3264
3282
|
} | undefined;
|
|
3265
3283
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -3268,7 +3286,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3268
3286
|
negative?: {
|
|
3269
3287
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3270
3288
|
rightYAxis?: boolean | undefined;
|
|
3271
|
-
color?: import("@univerjs/core").Nullable<
|
|
3289
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3272
3290
|
fillOpacity?: number | undefined;
|
|
3273
3291
|
border?: {
|
|
3274
3292
|
opacity?: number | undefined;
|
|
@@ -3302,10 +3320,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3302
3320
|
} | undefined;
|
|
3303
3321
|
dataPoints?: {
|
|
3304
3322
|
[x: number]: {
|
|
3323
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3305
3324
|
fillOpacity?: number | undefined;
|
|
3306
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3307
3325
|
size?: number | undefined;
|
|
3308
|
-
|
|
3326
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3309
3327
|
} | undefined;
|
|
3310
3328
|
} | undefined;
|
|
3311
3329
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -3314,7 +3332,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3314
3332
|
subtotal?: {
|
|
3315
3333
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3316
3334
|
rightYAxis?: boolean | undefined;
|
|
3317
|
-
color?: import("@univerjs/core").Nullable<
|
|
3335
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3318
3336
|
fillOpacity?: number | undefined;
|
|
3319
3337
|
border?: {
|
|
3320
3338
|
opacity?: number | undefined;
|
|
@@ -3348,10 +3366,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3348
3366
|
} | undefined;
|
|
3349
3367
|
dataPoints?: {
|
|
3350
3368
|
[x: number]: {
|
|
3369
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3351
3370
|
fillOpacity?: number | undefined;
|
|
3352
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3353
3371
|
size?: number | undefined;
|
|
3354
|
-
|
|
3372
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3355
3373
|
} | undefined;
|
|
3356
3374
|
} | undefined;
|
|
3357
3375
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -3362,7 +3380,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3362
3380
|
barStyle?: {
|
|
3363
3381
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3364
3382
|
rightYAxis?: boolean | undefined;
|
|
3365
|
-
color?: import("@univerjs/core").Nullable<
|
|
3383
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3366
3384
|
fillOpacity?: number | undefined;
|
|
3367
3385
|
border?: {
|
|
3368
3386
|
opacity?: number | undefined;
|
|
@@ -3396,17 +3414,17 @@ export declare class ChartModel extends Disposable {
|
|
|
3396
3414
|
} | undefined;
|
|
3397
3415
|
dataPoints?: {
|
|
3398
3416
|
[x: number]: {
|
|
3417
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3399
3418
|
fillOpacity?: number | undefined;
|
|
3400
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3401
3419
|
size?: number | undefined;
|
|
3402
|
-
|
|
3420
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3403
3421
|
} | undefined;
|
|
3404
3422
|
} | undefined;
|
|
3405
3423
|
waterfall?: {
|
|
3406
3424
|
positive?: {
|
|
3407
3425
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3408
3426
|
rightYAxis?: boolean | undefined;
|
|
3409
|
-
color?: import("@univerjs/core").Nullable<
|
|
3427
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3410
3428
|
fillOpacity?: number | undefined;
|
|
3411
3429
|
border?: {
|
|
3412
3430
|
opacity?: number | undefined;
|
|
@@ -3440,10 +3458,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3440
3458
|
} | undefined;
|
|
3441
3459
|
dataPoints?: {
|
|
3442
3460
|
[x: number]: {
|
|
3461
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3443
3462
|
fillOpacity?: number | undefined;
|
|
3444
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3445
3463
|
size?: number | undefined;
|
|
3446
|
-
|
|
3464
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3447
3465
|
} | undefined;
|
|
3448
3466
|
} | undefined;
|
|
3449
3467
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -3452,7 +3470,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3452
3470
|
negative?: {
|
|
3453
3471
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3454
3472
|
rightYAxis?: boolean | undefined;
|
|
3455
|
-
color?: import("@univerjs/core").Nullable<
|
|
3473
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3456
3474
|
fillOpacity?: number | undefined;
|
|
3457
3475
|
border?: {
|
|
3458
3476
|
opacity?: number | undefined;
|
|
@@ -3486,10 +3504,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3486
3504
|
} | undefined;
|
|
3487
3505
|
dataPoints?: {
|
|
3488
3506
|
[x: number]: {
|
|
3507
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3489
3508
|
fillOpacity?: number | undefined;
|
|
3490
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3491
3509
|
size?: number | undefined;
|
|
3492
|
-
|
|
3510
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3493
3511
|
} | undefined;
|
|
3494
3512
|
} | undefined;
|
|
3495
3513
|
waterfall?: /*elided*/ any | undefined;
|
|
@@ -3498,7 +3516,7 @@ export declare class ChartModel extends Disposable {
|
|
|
3498
3516
|
subtotal?: {
|
|
3499
3517
|
chartType?: (ChartTypeBits.Line | ChartTypeBits.Column | ChartTypeBits.Area) | undefined;
|
|
3500
3518
|
rightYAxis?: boolean | undefined;
|
|
3501
|
-
color?: import("@univerjs/core").Nullable<
|
|
3519
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3502
3520
|
fillOpacity?: number | undefined;
|
|
3503
3521
|
border?: {
|
|
3504
3522
|
opacity?: number | undefined;
|
|
@@ -3532,10 +3550,10 @@ export declare class ChartModel extends Disposable {
|
|
|
3532
3550
|
} | undefined;
|
|
3533
3551
|
dataPoints?: {
|
|
3534
3552
|
[x: number]: {
|
|
3553
|
+
color?: import("@univerjs/core").Nullable<import("..").ChartColor>;
|
|
3535
3554
|
fillOpacity?: number | undefined;
|
|
3536
|
-
shape?: import("..").LinePointShape | undefined;
|
|
3537
3555
|
size?: number | undefined;
|
|
3538
|
-
|
|
3556
|
+
shape?: import("..").LinePointShape | undefined;
|
|
3539
3557
|
} | undefined;
|
|
3540
3558
|
} | undefined;
|
|
3541
3559
|
waterfall?: /*elided*/ any | undefined;
|