@visactor/vchart-schema 1.3.0-beta.2 → 1.3.0-beta.6
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/package.json +1 -1
- package/vchart.json +163 -26
package/package.json
CHANGED
package/vchart.json
CHANGED
|
@@ -17778,6 +17778,12 @@
|
|
|
17778
17778
|
},
|
|
17779
17779
|
"IAreaChartSpec": {
|
|
17780
17780
|
"properties": {
|
|
17781
|
+
"activePoint": {
|
|
17782
|
+
"default": false,
|
|
17783
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
17784
|
+
"since": "1.3.0",
|
|
17785
|
+
"type": "boolean"
|
|
17786
|
+
},
|
|
17781
17787
|
"animation": {
|
|
17782
17788
|
"description": "是否开启系列动画",
|
|
17783
17789
|
"type": "boolean"
|
|
@@ -18503,6 +18509,12 @@
|
|
|
18503
18509
|
},
|
|
18504
18510
|
"IAreaSeriesSpec": {
|
|
18505
18511
|
"properties": {
|
|
18512
|
+
"activePoint": {
|
|
18513
|
+
"default": false,
|
|
18514
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
18515
|
+
"since": "1.3.0",
|
|
18516
|
+
"type": "boolean"
|
|
18517
|
+
},
|
|
18506
18518
|
"animation": {
|
|
18507
18519
|
"description": "是否开启系列动画",
|
|
18508
18520
|
"type": "boolean"
|
|
@@ -18812,7 +18824,14 @@
|
|
|
18812
18824
|
"$ref": "#/definitions/Partial<IMarkTheme<ILineMarkSpec>>"
|
|
18813
18825
|
},
|
|
18814
18826
|
"point": {
|
|
18815
|
-
"
|
|
18827
|
+
"allOf": [
|
|
18828
|
+
{
|
|
18829
|
+
"$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
|
|
18830
|
+
},
|
|
18831
|
+
{
|
|
18832
|
+
"typeof": "function"
|
|
18833
|
+
}
|
|
18834
|
+
]
|
|
18816
18835
|
}
|
|
18817
18836
|
},
|
|
18818
18837
|
"type": "object"
|
|
@@ -34251,6 +34270,15 @@
|
|
|
34251
34270
|
],
|
|
34252
34271
|
"description": "动画配置"
|
|
34253
34272
|
},
|
|
34273
|
+
"customLayoutFunc": {
|
|
34274
|
+
"typeof": "function"
|
|
34275
|
+
},
|
|
34276
|
+
"customOverlapFunc": {
|
|
34277
|
+
"typeof": "function"
|
|
34278
|
+
},
|
|
34279
|
+
"dataFilter": {
|
|
34280
|
+
"typeof": "function"
|
|
34281
|
+
},
|
|
34254
34282
|
"formatMethod": {
|
|
34255
34283
|
"typeof": "function"
|
|
34256
34284
|
},
|
|
@@ -35081,6 +35109,12 @@
|
|
|
35081
35109
|
},
|
|
35082
35110
|
"ILineChartSpec": {
|
|
35083
35111
|
"properties": {
|
|
35112
|
+
"activePoint": {
|
|
35113
|
+
"default": false,
|
|
35114
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
35115
|
+
"since": "1.3.0",
|
|
35116
|
+
"type": "boolean"
|
|
35117
|
+
},
|
|
35084
35118
|
"animation": {
|
|
35085
35119
|
"description": "是否开启系列动画",
|
|
35086
35120
|
"type": "boolean"
|
|
@@ -35748,6 +35782,12 @@
|
|
|
35748
35782
|
},
|
|
35749
35783
|
"ILineSeriesSpec": {
|
|
35750
35784
|
"properties": {
|
|
35785
|
+
"activePoint": {
|
|
35786
|
+
"default": false,
|
|
35787
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
35788
|
+
"since": "1.3.0",
|
|
35789
|
+
"type": "boolean"
|
|
35790
|
+
},
|
|
35751
35791
|
"animation": {
|
|
35752
35792
|
"description": "是否开启系列动画",
|
|
35753
35793
|
"type": "boolean"
|
|
@@ -36059,7 +36099,14 @@
|
|
|
36059
36099
|
"$ref": "#/definitions/Partial<IMarkTheme<ILineMarkSpec>>"
|
|
36060
36100
|
},
|
|
36061
36101
|
"point": {
|
|
36062
|
-
"
|
|
36102
|
+
"allOf": [
|
|
36103
|
+
{
|
|
36104
|
+
"$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
|
|
36105
|
+
},
|
|
36106
|
+
{
|
|
36107
|
+
"typeof": "function"
|
|
36108
|
+
}
|
|
36109
|
+
]
|
|
36063
36110
|
}
|
|
36064
36111
|
},
|
|
36065
36112
|
"type": "object"
|
|
@@ -41880,6 +41927,12 @@
|
|
|
41880
41927
|
},
|
|
41881
41928
|
"IRadarChartSpec": {
|
|
41882
41929
|
"properties": {
|
|
41930
|
+
"activePoint": {
|
|
41931
|
+
"default": false,
|
|
41932
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
41933
|
+
"since": "1.3.0",
|
|
41934
|
+
"type": "boolean"
|
|
41935
|
+
},
|
|
41883
41936
|
"angleField": {
|
|
41884
41937
|
"anyOf": [
|
|
41885
41938
|
{
|
|
@@ -42348,6 +42401,12 @@
|
|
|
42348
42401
|
},
|
|
42349
42402
|
"IRadarSeriesSpec": {
|
|
42350
42403
|
"properties": {
|
|
42404
|
+
"activePoint": {
|
|
42405
|
+
"default": false,
|
|
42406
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
42407
|
+
"since": "1.3.0",
|
|
42408
|
+
"type": "boolean"
|
|
42409
|
+
},
|
|
42351
42410
|
"angleField": {
|
|
42352
42411
|
"anyOf": [
|
|
42353
42412
|
{
|
|
@@ -42699,7 +42758,14 @@
|
|
|
42699
42758
|
"type": "number"
|
|
42700
42759
|
},
|
|
42701
42760
|
"point": {
|
|
42702
|
-
"
|
|
42761
|
+
"allOf": [
|
|
42762
|
+
{
|
|
42763
|
+
"$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
|
|
42764
|
+
},
|
|
42765
|
+
{
|
|
42766
|
+
"typeof": "function"
|
|
42767
|
+
}
|
|
42768
|
+
]
|
|
42703
42769
|
},
|
|
42704
42770
|
"radius": {
|
|
42705
42771
|
"type": "number"
|
|
@@ -42749,6 +42815,12 @@
|
|
|
42749
42815
|
},
|
|
42750
42816
|
"IRangeAreaChartSpec": {
|
|
42751
42817
|
"properties": {
|
|
42818
|
+
"activePoint": {
|
|
42819
|
+
"default": false,
|
|
42820
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
42821
|
+
"since": "1.3.0",
|
|
42822
|
+
"type": "boolean"
|
|
42823
|
+
},
|
|
42752
42824
|
"animation": {
|
|
42753
42825
|
"description": "是否开启系列动画",
|
|
42754
42826
|
"type": "boolean"
|
|
@@ -43204,6 +43276,12 @@
|
|
|
43204
43276
|
},
|
|
43205
43277
|
"IRangeAreaSeriesSpec": {
|
|
43206
43278
|
"properties": {
|
|
43279
|
+
"activePoint": {
|
|
43280
|
+
"default": false,
|
|
43281
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
43282
|
+
"since": "1.3.0",
|
|
43283
|
+
"type": "boolean"
|
|
43284
|
+
},
|
|
43207
43285
|
"animation": {
|
|
43208
43286
|
"description": "是否开启系列动画",
|
|
43209
43287
|
"type": "boolean"
|
|
@@ -52381,6 +52459,10 @@
|
|
|
52381
52459
|
"$ref": "#/definitions/TooltipContentProperty<string>",
|
|
52382
52460
|
"description": "tooltip key 值内容"
|
|
52383
52461
|
},
|
|
52462
|
+
"keyStyle": {
|
|
52463
|
+
"$ref": "#/definitions/TooltipContentProperty<ITooltipTextTheme>",
|
|
52464
|
+
"description": "key 样式(只在 content 上需要配置)"
|
|
52465
|
+
},
|
|
52384
52466
|
"seriesId": {
|
|
52385
52467
|
"description": "该 pattern 属于哪个系列id(用户不需要设置)",
|
|
52386
52468
|
"type": "number"
|
|
@@ -52391,6 +52473,9 @@
|
|
|
52391
52473
|
"shapeHollow": {
|
|
52392
52474
|
"type": "boolean"
|
|
52393
52475
|
},
|
|
52476
|
+
"shapeSize": {
|
|
52477
|
+
"$ref": "#/definitions/TooltipContentProperty<number>"
|
|
52478
|
+
},
|
|
52394
52479
|
"shapeType": {
|
|
52395
52480
|
"$ref": "#/definitions/TooltipContentProperty<string>"
|
|
52396
52481
|
},
|
|
@@ -52398,6 +52483,10 @@
|
|
|
52398
52483
|
"$ref": "#/definitions/TooltipContentProperty<string>",
|
|
52399
52484
|
"description": "tooltip value 值内容"
|
|
52400
52485
|
},
|
|
52486
|
+
"valueStyle": {
|
|
52487
|
+
"$ref": "#/definitions/TooltipContentProperty<ITooltipTextTheme>",
|
|
52488
|
+
"description": "value 样式"
|
|
52489
|
+
},
|
|
52401
52490
|
"visible": {
|
|
52402
52491
|
"$ref": "#/definitions/TooltipContentProperty<boolean>",
|
|
52403
52492
|
"description": "该行是否可见"
|
|
@@ -52424,12 +52513,19 @@
|
|
|
52424
52513
|
"position": {
|
|
52425
52514
|
"$ref": "#/definitions/TooltipPatternProperty<TooltipPosition>"
|
|
52426
52515
|
},
|
|
52516
|
+
"seriesId": {
|
|
52517
|
+
"description": "该 pattern 属于哪个系列id(用户不需要设置)",
|
|
52518
|
+
"type": "number"
|
|
52519
|
+
},
|
|
52427
52520
|
"shapeColor": {
|
|
52428
52521
|
"$ref": "#/definitions/TooltipContentProperty<string>"
|
|
52429
52522
|
},
|
|
52430
52523
|
"shapeHollow": {
|
|
52431
52524
|
"type": "boolean"
|
|
52432
52525
|
},
|
|
52526
|
+
"shapeSize": {
|
|
52527
|
+
"$ref": "#/definitions/TooltipContentProperty<number>"
|
|
52528
|
+
},
|
|
52433
52529
|
"shapeType": {
|
|
52434
52530
|
"$ref": "#/definitions/TooltipContentProperty<string>"
|
|
52435
52531
|
},
|
|
@@ -52602,10 +52698,13 @@
|
|
|
52602
52698
|
},
|
|
52603
52699
|
"ITooltipTextTheme": {
|
|
52604
52700
|
"properties": {
|
|
52605
|
-
"
|
|
52701
|
+
"fill": {
|
|
52606
52702
|
"description": "字体颜色",
|
|
52607
52703
|
"type": "string"
|
|
52608
52704
|
},
|
|
52705
|
+
"fontColor": {
|
|
52706
|
+
"type": "string"
|
|
52707
|
+
},
|
|
52609
52708
|
"fontFamily": {
|
|
52610
52709
|
"description": "字体",
|
|
52611
52710
|
"type": "string"
|
|
@@ -57893,7 +57992,7 @@
|
|
|
57893
57992
|
},
|
|
57894
57993
|
"Map<Function,(...args:any[])=>void>": {
|
|
57895
57994
|
"properties": {
|
|
57896
|
-
"__@toStringTag@
|
|
57995
|
+
"__@toStringTag@11349": {
|
|
57897
57996
|
"type": "string"
|
|
57898
57997
|
},
|
|
57899
57998
|
"size": {
|
|
@@ -57901,14 +58000,14 @@
|
|
|
57901
58000
|
}
|
|
57902
58001
|
},
|
|
57903
58002
|
"required": [
|
|
57904
|
-
"__@toStringTag@
|
|
58003
|
+
"__@toStringTag@11349",
|
|
57905
58004
|
"size"
|
|
57906
58005
|
],
|
|
57907
58006
|
"type": "object"
|
|
57908
58007
|
},
|
|
57909
58008
|
"Map<number,IGraphicPicker>": {
|
|
57910
58009
|
"properties": {
|
|
57911
|
-
"__@toStringTag@
|
|
58010
|
+
"__@toStringTag@11349": {
|
|
57912
58011
|
"type": "string"
|
|
57913
58012
|
},
|
|
57914
58013
|
"size": {
|
|
@@ -57916,14 +58015,14 @@
|
|
|
57916
58015
|
}
|
|
57917
58016
|
},
|
|
57918
58017
|
"required": [
|
|
57919
|
-
"__@toStringTag@
|
|
58018
|
+
"__@toStringTag@11349",
|
|
57920
58019
|
"size"
|
|
57921
58020
|
],
|
|
57922
58021
|
"type": "object"
|
|
57923
58022
|
},
|
|
57924
58023
|
"Map<number,IGraphicRender>": {
|
|
57925
58024
|
"properties": {
|
|
57926
|
-
"__@toStringTag@
|
|
58025
|
+
"__@toStringTag@11349": {
|
|
57927
58026
|
"type": "string"
|
|
57928
58027
|
},
|
|
57929
58028
|
"size": {
|
|
@@ -57931,14 +58030,14 @@
|
|
|
57931
58030
|
}
|
|
57932
58031
|
},
|
|
57933
58032
|
"required": [
|
|
57934
|
-
"__@toStringTag@
|
|
58033
|
+
"__@toStringTag@11349",
|
|
57935
58034
|
"size"
|
|
57936
58035
|
],
|
|
57937
58036
|
"type": "object"
|
|
57938
58037
|
},
|
|
57939
58038
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
57940
58039
|
"properties": {
|
|
57941
|
-
"__@toStringTag@
|
|
58040
|
+
"__@toStringTag@11349": {
|
|
57942
58041
|
"type": "string"
|
|
57943
58042
|
},
|
|
57944
58043
|
"size": {
|
|
@@ -57946,14 +58045,14 @@
|
|
|
57946
58045
|
}
|
|
57947
58046
|
},
|
|
57948
58047
|
"required": [
|
|
57949
|
-
"__@toStringTag@
|
|
58048
|
+
"__@toStringTag@11349",
|
|
57950
58049
|
"size"
|
|
57951
58050
|
],
|
|
57952
58051
|
"type": "object"
|
|
57953
58052
|
},
|
|
57954
58053
|
"Map<string,Map<number,IGraphicRender>>": {
|
|
57955
58054
|
"properties": {
|
|
57956
|
-
"__@toStringTag@
|
|
58055
|
+
"__@toStringTag@11349": {
|
|
57957
58056
|
"type": "string"
|
|
57958
58057
|
},
|
|
57959
58058
|
"size": {
|
|
@@ -57961,14 +58060,14 @@
|
|
|
57961
58060
|
}
|
|
57962
58061
|
},
|
|
57963
58062
|
"required": [
|
|
57964
|
-
"__@toStringTag@
|
|
58063
|
+
"__@toStringTag@11349",
|
|
57965
58064
|
"size"
|
|
57966
58065
|
],
|
|
57967
58066
|
"type": "object"
|
|
57968
58067
|
},
|
|
57969
58068
|
"Map<string,any>": {
|
|
57970
58069
|
"properties": {
|
|
57971
|
-
"__@toStringTag@
|
|
58070
|
+
"__@toStringTag@11349": {
|
|
57972
58071
|
"type": "string"
|
|
57973
58072
|
},
|
|
57974
58073
|
"size": {
|
|
@@ -57976,14 +58075,14 @@
|
|
|
57976
58075
|
}
|
|
57977
58076
|
},
|
|
57978
58077
|
"required": [
|
|
57979
|
-
"__@toStringTag@
|
|
58078
|
+
"__@toStringTag@11349",
|
|
57980
58079
|
"size"
|
|
57981
58080
|
],
|
|
57982
58081
|
"type": "object"
|
|
57983
58082
|
},
|
|
57984
58083
|
"Map<string|HTMLCanvasElement|HTMLImageElement,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
57985
58084
|
"properties": {
|
|
57986
|
-
"__@toStringTag@
|
|
58085
|
+
"__@toStringTag@11349": {
|
|
57987
58086
|
"type": "string"
|
|
57988
58087
|
},
|
|
57989
58088
|
"size": {
|
|
@@ -57991,14 +58090,14 @@
|
|
|
57991
58090
|
}
|
|
57992
58091
|
},
|
|
57993
58092
|
"required": [
|
|
57994
|
-
"__@toStringTag@
|
|
58093
|
+
"__@toStringTag@11349",
|
|
57995
58094
|
"size"
|
|
57996
58095
|
],
|
|
57997
58096
|
"type": "object"
|
|
57998
58097
|
},
|
|
57999
58098
|
"Map<string|number,IAnimate>": {
|
|
58000
58099
|
"properties": {
|
|
58001
|
-
"__@toStringTag@
|
|
58100
|
+
"__@toStringTag@11349": {
|
|
58002
58101
|
"type": "string"
|
|
58003
58102
|
},
|
|
58004
58103
|
"size": {
|
|
@@ -58006,7 +58105,7 @@
|
|
|
58006
58105
|
}
|
|
58007
58106
|
},
|
|
58008
58107
|
"required": [
|
|
58009
|
-
"__@toStringTag@
|
|
58108
|
+
"__@toStringTag@11349",
|
|
58010
58109
|
"size"
|
|
58011
58110
|
],
|
|
58012
58111
|
"type": "object"
|
|
@@ -64427,6 +64526,15 @@
|
|
|
64427
64526
|
],
|
|
64428
64527
|
"description": "动画配置"
|
|
64429
64528
|
},
|
|
64529
|
+
"customLayoutFunc": {
|
|
64530
|
+
"typeof": "function"
|
|
64531
|
+
},
|
|
64532
|
+
"customOverlapFunc": {
|
|
64533
|
+
"typeof": "function"
|
|
64534
|
+
},
|
|
64535
|
+
"dataFilter": {
|
|
64536
|
+
"typeof": "function"
|
|
64537
|
+
},
|
|
64430
64538
|
"formatMethod": {
|
|
64431
64539
|
"typeof": "function"
|
|
64432
64540
|
},
|
|
@@ -64505,6 +64613,15 @@
|
|
|
64505
64613
|
],
|
|
64506
64614
|
"description": "动画配置"
|
|
64507
64615
|
},
|
|
64616
|
+
"customLayoutFunc": {
|
|
64617
|
+
"typeof": "function"
|
|
64618
|
+
},
|
|
64619
|
+
"customOverlapFunc": {
|
|
64620
|
+
"typeof": "function"
|
|
64621
|
+
},
|
|
64622
|
+
"dataFilter": {
|
|
64623
|
+
"typeof": "function"
|
|
64624
|
+
},
|
|
64508
64625
|
"formatMethod": {
|
|
64509
64626
|
"typeof": "function"
|
|
64510
64627
|
},
|
|
@@ -69717,34 +69834,34 @@
|
|
|
69717
69834
|
},
|
|
69718
69835
|
"Promise<FontFaceSet>": {
|
|
69719
69836
|
"properties": {
|
|
69720
|
-
"__@toStringTag@
|
|
69837
|
+
"__@toStringTag@11349": {
|
|
69721
69838
|
"type": "string"
|
|
69722
69839
|
}
|
|
69723
69840
|
},
|
|
69724
69841
|
"required": [
|
|
69725
|
-
"__@toStringTag@
|
|
69842
|
+
"__@toStringTag@11349"
|
|
69726
69843
|
],
|
|
69727
69844
|
"type": "object"
|
|
69728
69845
|
},
|
|
69729
69846
|
"Promise<ServiceWorkerRegistration>": {
|
|
69730
69847
|
"properties": {
|
|
69731
|
-
"__@toStringTag@
|
|
69848
|
+
"__@toStringTag@11349": {
|
|
69732
69849
|
"type": "string"
|
|
69733
69850
|
}
|
|
69734
69851
|
},
|
|
69735
69852
|
"required": [
|
|
69736
|
-
"__@toStringTag@
|
|
69853
|
+
"__@toStringTag@11349"
|
|
69737
69854
|
],
|
|
69738
69855
|
"type": "object"
|
|
69739
69856
|
},
|
|
69740
69857
|
"Promise<any>": {
|
|
69741
69858
|
"properties": {
|
|
69742
|
-
"__@toStringTag@
|
|
69859
|
+
"__@toStringTag@11349": {
|
|
69743
69860
|
"type": "string"
|
|
69744
69861
|
}
|
|
69745
69862
|
},
|
|
69746
69863
|
"required": [
|
|
69747
|
-
"__@toStringTag@
|
|
69864
|
+
"__@toStringTag@11349"
|
|
69748
69865
|
],
|
|
69749
69866
|
"type": "object"
|
|
69750
69867
|
},
|
|
@@ -79045,6 +79162,16 @@
|
|
|
79045
79162
|
],
|
|
79046
79163
|
"type": "string"
|
|
79047
79164
|
},
|
|
79165
|
+
"TooltipContentProperty<ITooltipTextTheme>": {
|
|
79166
|
+
"anyOf": [
|
|
79167
|
+
{
|
|
79168
|
+
"$ref": "#/definitions/ITooltipTextTheme"
|
|
79169
|
+
},
|
|
79170
|
+
{
|
|
79171
|
+
"typeof": "function"
|
|
79172
|
+
}
|
|
79173
|
+
]
|
|
79174
|
+
},
|
|
79048
79175
|
"TooltipContentProperty<boolean>": {
|
|
79049
79176
|
"anyOf": [
|
|
79050
79177
|
{
|
|
@@ -79055,6 +79182,16 @@
|
|
|
79055
79182
|
}
|
|
79056
79183
|
]
|
|
79057
79184
|
},
|
|
79185
|
+
"TooltipContentProperty<number>": {
|
|
79186
|
+
"anyOf": [
|
|
79187
|
+
{
|
|
79188
|
+
"typeof": "function"
|
|
79189
|
+
},
|
|
79190
|
+
{
|
|
79191
|
+
"type": "number"
|
|
79192
|
+
}
|
|
79193
|
+
]
|
|
79194
|
+
},
|
|
79058
79195
|
"TooltipContentProperty<string>": {
|
|
79059
79196
|
"anyOf": [
|
|
79060
79197
|
{
|