@visactor/vchart-schema 1.10.3 → 1.10.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vchart.json +361 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "1.10.3",
3
+ "version": "1.10.4",
4
4
  "description": "The VChart JSON schema file.",
5
5
  "sideEffects": false,
6
6
  "main": "vchart.json",
package/vchart.json CHANGED
@@ -18938,6 +18938,12 @@
18938
18938
  "description": "是否围绕中心轴偏移轮廓",
18939
18939
  "type": "boolean"
18940
18940
  },
18941
+ "stackSort": {
18942
+ "default": false,
18943
+ "description": "堆积时是否排序",
18944
+ "since": "1.10.4",
18945
+ "type": "boolean"
18946
+ },
18941
18947
  "support3d": {
18942
18948
  "description": "是否支持3d视角",
18943
18949
  "type": "boolean"
@@ -20707,6 +20713,12 @@
20707
20713
  "description": "是否围绕中心轴偏移轮廓",
20708
20714
  "type": "boolean"
20709
20715
  },
20716
+ "stackSort": {
20717
+ "default": false,
20718
+ "description": "堆积时是否排序",
20719
+ "since": "1.10.4",
20720
+ "type": "boolean"
20721
+ },
20710
20722
  "support3d": {
20711
20723
  "description": "是否支持3d视角",
20712
20724
  "type": "boolean"
@@ -21580,6 +21592,12 @@
21580
21592
  "description": "是否围绕中心轴偏移轮廓",
21581
21593
  "type": "boolean"
21582
21594
  },
21595
+ "stackSort": {
21596
+ "default": false,
21597
+ "description": "堆积时是否排序",
21598
+ "since": "1.10.4",
21599
+ "type": "boolean"
21600
+ },
21583
21601
  "support3d": {
21584
21602
  "description": "是否支持3d视角",
21585
21603
  "type": "boolean"
@@ -22988,6 +23006,12 @@
22988
23006
  "description": "是否围绕中心轴偏移轮廓",
22989
23007
  "type": "boolean"
22990
23008
  },
23009
+ "stackSort": {
23010
+ "default": false,
23011
+ "description": "堆积时是否排序",
23012
+ "since": "1.10.4",
23013
+ "type": "boolean"
23014
+ },
22991
23015
  "support3d": {
22992
23016
  "description": "是否支持3d视角",
22993
23017
  "type": "boolean"
@@ -25017,6 +25041,12 @@
25017
25041
  "since": "1.4.0",
25018
25042
  "type": "boolean"
25019
25043
  },
25044
+ "stackSort": {
25045
+ "default": false,
25046
+ "description": "堆积时是否排序",
25047
+ "since": "1.10.4",
25048
+ "type": "boolean"
25049
+ },
25020
25050
  "theme": {
25021
25051
  "anyOf": [
25022
25052
  {
@@ -25433,6 +25463,12 @@
25433
25463
  "description": "是否围绕中心轴偏移轮廓",
25434
25464
  "type": "boolean"
25435
25465
  },
25466
+ "stackSort": {
25467
+ "default": false,
25468
+ "description": "堆积时是否排序",
25469
+ "since": "1.10.4",
25470
+ "type": "boolean"
25471
+ },
25436
25472
  "support3d": {
25437
25473
  "description": "是否支持3d视角",
25438
25474
  "type": "boolean"
@@ -26236,6 +26272,12 @@
26236
26272
  "description": "是否围绕中心轴偏移轮廓",
26237
26273
  "type": "boolean"
26238
26274
  },
26275
+ "stackSort": {
26276
+ "default": false,
26277
+ "description": "堆积时是否排序",
26278
+ "since": "1.10.4",
26279
+ "type": "boolean"
26280
+ },
26239
26281
  "startAngle": {
26240
26282
  "description": "扇区起始角度",
26241
26283
  "type": "number"
@@ -27222,7 +27264,79 @@
27222
27264
  "description": "图例配置"
27223
27265
  },
27224
27266
  "markArea": {
27225
- "$ref": "#/definitions/IMarkAreaSpec",
27267
+ "anyOf": [
27268
+ {
27269
+ "allOf": [
27270
+ {
27271
+ "$ref": "#/definitions/IMarkerSpec"
27272
+ },
27273
+ {
27274
+ "typeof": "function"
27275
+ },
27276
+ {
27277
+ "$ref": "#/definitions/IMarkAreaTheme"
27278
+ }
27279
+ ]
27280
+ },
27281
+ {
27282
+ "allOf": [
27283
+ {
27284
+ "$ref": "#/definitions/IMarkerSpec"
27285
+ },
27286
+ {
27287
+ "$ref": "#/definitions/IMarkAreaXSpec"
27288
+ },
27289
+ {
27290
+ "$ref": "#/definitions/IMarkAreaTheme"
27291
+ }
27292
+ ]
27293
+ },
27294
+ {
27295
+ "allOf": [
27296
+ {
27297
+ "$ref": "#/definitions/IMarkerSpec"
27298
+ },
27299
+ {
27300
+ "$ref": "#/definitions/IMarkAreaYSpec"
27301
+ },
27302
+ {
27303
+ "$ref": "#/definitions/IMarkAreaTheme"
27304
+ }
27305
+ ]
27306
+ },
27307
+ {
27308
+ "allOf": [
27309
+ {
27310
+ "$ref": "#/definitions/IMarkerSpec"
27311
+ },
27312
+ {
27313
+ "$ref": "#/definitions/IMarkAreaXYSpec"
27314
+ },
27315
+ {
27316
+ "$ref": "#/definitions/IMarkAreaTheme"
27317
+ }
27318
+ ]
27319
+ },
27320
+ {
27321
+ "allOf": [
27322
+ {
27323
+ "$ref": "#/definitions/IMarkerSpec"
27324
+ },
27325
+ {
27326
+ "typeof": "function"
27327
+ },
27328
+ {
27329
+ "$ref": "#/definitions/IMarkAreaTheme"
27330
+ }
27331
+ ]
27332
+ },
27333
+ {
27334
+ "items": {
27335
+ "$ref": "#/definitions/IMarkAreaSpec"
27336
+ },
27337
+ "type": "array"
27338
+ }
27339
+ ],
27226
27340
  "description": "**仅适用于笛卡尔坐标系**,参考区域配置"
27227
27341
  },
27228
27342
  "markLine": {
@@ -27360,7 +27474,53 @@
27360
27474
  "description": "**仅适用于笛卡尔坐标系**,参考线配置"
27361
27475
  },
27362
27476
  "markPoint": {
27363
- "$ref": "#/definitions/IMarkPointSpec",
27477
+ "anyOf": [
27478
+ {
27479
+ "allOf": [
27480
+ {
27481
+ "$ref": "#/definitions/IMarkerSpec"
27482
+ },
27483
+ {
27484
+ "typeof": "function"
27485
+ },
27486
+ {
27487
+ "$ref": "#/definitions/IMarkPointTheme<IMarkerSymbol>"
27488
+ }
27489
+ ]
27490
+ },
27491
+ {
27492
+ "allOf": [
27493
+ {
27494
+ "$ref": "#/definitions/IMarkerSpec"
27495
+ },
27496
+ {
27497
+ "typeof": "function"
27498
+ },
27499
+ {
27500
+ "$ref": "#/definitions/IMarkPointTheme<IMarkerSymbol>"
27501
+ }
27502
+ ]
27503
+ },
27504
+ {
27505
+ "allOf": [
27506
+ {
27507
+ "$ref": "#/definitions/IMarkerSpec"
27508
+ },
27509
+ {
27510
+ "typeof": "function"
27511
+ },
27512
+ {
27513
+ "$ref": "#/definitions/IMarkPointTheme<IMarkerSymbol>"
27514
+ }
27515
+ ]
27516
+ },
27517
+ {
27518
+ "items": {
27519
+ "$ref": "#/definitions/IMarkPointSpec"
27520
+ },
27521
+ "type": "array"
27522
+ }
27523
+ ],
27364
27524
  "description": "**仅适用于笛卡尔坐标系**,参考点配置"
27365
27525
  },
27366
27526
  "media": {
@@ -27532,6 +27692,12 @@
27532
27692
  "since": "1.4.0",
27533
27693
  "type": "boolean"
27534
27694
  },
27695
+ "stackSort": {
27696
+ "default": false,
27697
+ "description": "堆积时是否排序",
27698
+ "since": "1.10.4",
27699
+ "type": "boolean"
27700
+ },
27535
27701
  "theme": {
27536
27702
  "anyOf": [
27537
27703
  {
@@ -28862,6 +29028,12 @@
28862
29028
  "description": "是否围绕中心轴偏移轮廓",
28863
29029
  "type": "boolean"
28864
29030
  },
29031
+ "stackSort": {
29032
+ "default": false,
29033
+ "description": "堆积时是否排序",
29034
+ "since": "1.10.4",
29035
+ "type": "boolean"
29036
+ },
28865
29037
  "startAngle": {
28866
29038
  "description": "图表起始角度",
28867
29039
  "type": "number"
@@ -32905,6 +33077,12 @@
32905
33077
  "description": "是否围绕中心轴偏移轮廓",
32906
33078
  "type": "boolean"
32907
33079
  },
33080
+ "stackSort": {
33081
+ "default": false,
33082
+ "description": "堆积时是否排序",
33083
+ "since": "1.10.4",
33084
+ "type": "boolean"
33085
+ },
32908
33086
  "support3d": {
32909
33087
  "description": "是否支持3d视角",
32910
33088
  "type": "boolean"
@@ -33439,6 +33617,12 @@
33439
33617
  "description": "是否围绕中心轴偏移轮廓",
33440
33618
  "type": "boolean"
33441
33619
  },
33620
+ "stackSort": {
33621
+ "default": false,
33622
+ "description": "堆积时是否排序",
33623
+ "since": "1.10.4",
33624
+ "type": "boolean"
33625
+ },
33442
33626
  "support3d": {
33443
33627
  "description": "是否支持3d视角",
33444
33628
  "type": "boolean"
@@ -34702,6 +34886,12 @@
34702
34886
  "description": "是否围绕中心轴偏移轮廓",
34703
34887
  "type": "boolean"
34704
34888
  },
34889
+ "stackSort": {
34890
+ "default": false,
34891
+ "description": "堆积时是否排序",
34892
+ "since": "1.10.4",
34893
+ "type": "boolean"
34894
+ },
34705
34895
  "stackValue": {
34706
34896
  "$ref": "#/definitions/StringOrNumber",
34707
34897
  "description": "堆叠时的分组值\nstackValue 相等的系列将在一起堆积。没有配置的系列将在一组",
@@ -35778,6 +35968,12 @@
35778
35968
  "since": "1.4.0",
35779
35969
  "type": "boolean"
35780
35970
  },
35971
+ "stackSort": {
35972
+ "default": false,
35973
+ "description": "堆积时是否排序",
35974
+ "since": "1.10.4",
35975
+ "type": "boolean"
35976
+ },
35781
35977
  "style": {
35782
35978
  "$ref": "#/definitions/ConvertToMarkStyleSpec<IRectMarkSpec>_2"
35783
35979
  },
@@ -38966,6 +39162,12 @@
38966
39162
  "description": "是否围绕中心轴偏移轮廓",
38967
39163
  "type": "boolean"
38968
39164
  },
39165
+ "stackSort": {
39166
+ "default": false,
39167
+ "description": "堆积时是否排序",
39168
+ "since": "1.10.4",
39169
+ "type": "boolean"
39170
+ },
38969
39171
  "support3d": {
38970
39172
  "description": "是否支持3d视角",
38971
39173
  "type": "boolean"
@@ -40191,6 +40393,12 @@
40191
40393
  "description": "是否围绕中心轴偏移轮廓",
40192
40394
  "type": "boolean"
40193
40395
  },
40396
+ "stackSort": {
40397
+ "default": false,
40398
+ "description": "堆积时是否排序",
40399
+ "since": "1.10.4",
40400
+ "type": "boolean"
40401
+ },
40194
40402
  "support3d": {
40195
40403
  "description": "是否支持3d视角",
40196
40404
  "type": "boolean"
@@ -41015,6 +41223,12 @@
41015
41223
  "description": "是否围绕中心轴偏移轮廓",
41016
41224
  "type": "boolean"
41017
41225
  },
41226
+ "stackSort": {
41227
+ "default": false,
41228
+ "description": "堆积时是否排序",
41229
+ "since": "1.10.4",
41230
+ "type": "boolean"
41231
+ },
41018
41232
  "support3d": {
41019
41233
  "description": "是否支持3d视角",
41020
41234
  "type": "boolean"
@@ -43782,6 +43996,12 @@
43782
43996
  "description": "是否围绕中心轴偏移轮廓",
43783
43997
  "type": "boolean"
43784
43998
  },
43999
+ "stackSort": {
44000
+ "default": false,
44001
+ "description": "堆积时是否排序",
44002
+ "since": "1.10.4",
44003
+ "type": "boolean"
44004
+ },
43785
44005
  "support3d": {
43786
44006
  "description": "是否支持3d视角",
43787
44007
  "type": "boolean"
@@ -44986,6 +45206,12 @@
44986
45206
  "description": "是否围绕中心轴偏移轮廓",
44987
45207
  "type": "boolean"
44988
45208
  },
45209
+ "stackSort": {
45210
+ "default": false,
45211
+ "description": "堆积时是否排序",
45212
+ "since": "1.10.4",
45213
+ "type": "boolean"
45214
+ },
44989
45215
  "support3d": {
44990
45216
  "description": "是否支持3d视角",
44991
45217
  "type": "boolean"
@@ -46281,6 +46507,12 @@
46281
46507
  "description": "是否围绕中心轴偏移轮廓",
46282
46508
  "type": "boolean"
46283
46509
  },
46510
+ "stackSort": {
46511
+ "default": false,
46512
+ "description": "堆积时是否排序",
46513
+ "since": "1.10.4",
46514
+ "type": "boolean"
46515
+ },
46284
46516
  "support3d": {
46285
46517
  "description": "是否支持3d视角",
46286
46518
  "type": "boolean"
@@ -49343,6 +49575,12 @@
49343
49575
  "description": "是否围绕中心轴偏移轮廓",
49344
49576
  "type": "boolean"
49345
49577
  },
49578
+ "stackSort": {
49579
+ "default": false,
49580
+ "description": "堆积时是否排序",
49581
+ "since": "1.10.4",
49582
+ "type": "boolean"
49583
+ },
49346
49584
  "startAngle": {
49347
49585
  "default": -90,
49348
49586
  "description": "饼图的起始角度(0 ~ 360)",
@@ -49885,6 +50123,12 @@
49885
50123
  "description": "是否围绕中心轴偏移轮廓",
49886
50124
  "type": "boolean"
49887
50125
  },
50126
+ "stackSort": {
50127
+ "default": false,
50128
+ "description": "堆积时是否排序",
50129
+ "since": "1.10.4",
50130
+ "type": "boolean"
50131
+ },
49888
50132
  "startAngle": {
49889
50133
  "default": -90,
49890
50134
  "description": "饼图的起始角度(0 ~ 360)",
@@ -52688,6 +52932,12 @@
52688
52932
  "description": "是否围绕中心轴偏移轮廓",
52689
52933
  "type": "boolean"
52690
52934
  },
52935
+ "stackSort": {
52936
+ "default": false,
52937
+ "description": "堆积时是否排序",
52938
+ "since": "1.10.4",
52939
+ "type": "boolean"
52940
+ },
52691
52941
  "startAngle": {
52692
52942
  "description": "扇区起始角度",
52693
52943
  "type": "number"
@@ -53910,6 +54160,12 @@
53910
54160
  "description": "是否围绕中心轴偏移轮廓",
53911
54161
  "type": "boolean"
53912
54162
  },
54163
+ "stackSort": {
54164
+ "default": false,
54165
+ "description": "堆积时是否排序",
54166
+ "since": "1.10.4",
54167
+ "type": "boolean"
54168
+ },
53913
54169
  "support3d": {
53914
54170
  "description": "是否支持3d视角",
53915
54171
  "type": "boolean"
@@ -55124,6 +55380,12 @@
55124
55380
  "description": "是否围绕中心轴偏移轮廓",
55125
55381
  "type": "boolean"
55126
55382
  },
55383
+ "stackSort": {
55384
+ "default": false,
55385
+ "description": "堆积时是否排序",
55386
+ "since": "1.10.4",
55387
+ "type": "boolean"
55388
+ },
55127
55389
  "support3d": {
55128
55390
  "description": "是否支持3d视角",
55129
55391
  "type": "boolean"
@@ -56377,6 +56639,12 @@
56377
56639
  "description": "是否围绕中心轴偏移轮廓",
56378
56640
  "type": "boolean"
56379
56641
  },
56642
+ "stackSort": {
56643
+ "default": false,
56644
+ "description": "堆积时是否排序",
56645
+ "since": "1.10.4",
56646
+ "type": "boolean"
56647
+ },
56380
56648
  "support3d": {
56381
56649
  "description": "是否支持3d视角",
56382
56650
  "type": "boolean"
@@ -57516,6 +57784,12 @@
57516
57784
  "since": "1.4.0",
57517
57785
  "type": "boolean"
57518
57786
  },
57787
+ "stackSort": {
57788
+ "default": false,
57789
+ "description": "堆积时是否排序",
57790
+ "since": "1.10.4",
57791
+ "type": "boolean"
57792
+ },
57519
57793
  "style": {
57520
57794
  "$ref": "#/definitions/ConvertToMarkStyleSpec<IRectMarkSpec>_2"
57521
57795
  },
@@ -58162,6 +58436,12 @@
58162
58436
  "description": "是否围绕中心轴偏移轮廓",
58163
58437
  "type": "boolean"
58164
58438
  },
58439
+ "stackSort": {
58440
+ "default": false,
58441
+ "description": "堆积时是否排序",
58442
+ "since": "1.10.4",
58443
+ "type": "boolean"
58444
+ },
58165
58445
  "startAngle": {
58166
58446
  "description": "扇区起始角度",
58167
58447
  "type": "number"
@@ -59296,6 +59576,12 @@
59296
59576
  "description": "是否围绕中心轴偏移轮廓",
59297
59577
  "type": "boolean"
59298
59578
  },
59579
+ "stackSort": {
59580
+ "default": false,
59581
+ "description": "堆积时是否排序",
59582
+ "since": "1.10.4",
59583
+ "type": "boolean"
59584
+ },
59299
59585
  "support3d": {
59300
59586
  "description": "是否支持3d视角",
59301
59587
  "type": "boolean"
@@ -60386,6 +60672,12 @@
60386
60672
  "description": "是否围绕中心轴偏移轮廓",
60387
60673
  "type": "boolean"
60388
60674
  },
60675
+ "stackSort": {
60676
+ "default": false,
60677
+ "description": "堆积时是否排序",
60678
+ "since": "1.10.4",
60679
+ "type": "boolean"
60680
+ },
60389
60681
  "support3d": {
60390
60682
  "description": "是否支持3d视角",
60391
60683
  "type": "boolean"
@@ -61630,6 +61922,12 @@
61630
61922
  "since": "1.4.0",
61631
61923
  "type": "boolean"
61632
61924
  },
61925
+ "stackSort": {
61926
+ "default": false,
61927
+ "description": "堆积时是否排序",
61928
+ "since": "1.10.4",
61929
+ "type": "boolean"
61930
+ },
61633
61931
  "theme": {
61634
61932
  "anyOf": [
61635
61933
  {
@@ -63672,6 +63970,12 @@
63672
63970
  "description": "是否围绕中心轴偏移轮廓",
63673
63971
  "type": "boolean"
63674
63972
  },
63973
+ "stackSort": {
63974
+ "default": false,
63975
+ "description": "堆积时是否排序",
63976
+ "since": "1.10.4",
63977
+ "type": "boolean"
63978
+ },
63675
63979
  "startAngle": {
63676
63980
  "default": -90,
63677
63981
  "description": "起始角度",
@@ -66727,6 +67031,12 @@
66727
67031
  "description": "是否围绕中心轴偏移轮廓",
66728
67032
  "type": "boolean"
66729
67033
  },
67034
+ "stackSort": {
67035
+ "default": false,
67036
+ "description": "堆积时是否排序",
67037
+ "since": "1.10.4",
67038
+ "type": "boolean"
67039
+ },
66730
67040
  "stackValue": {
66731
67041
  "$ref": "#/definitions/StringOrNumber",
66732
67042
  "description": "堆叠时的分组值\nstackValue 相等的系列将在一起堆积。没有配置的系列将在一组",
@@ -69778,6 +70088,12 @@
69778
70088
  "description": "是否围绕中心轴偏移轮廓",
69779
70089
  "type": "boolean"
69780
70090
  },
70091
+ "stackSort": {
70092
+ "default": false,
70093
+ "description": "堆积时是否排序",
70094
+ "since": "1.10.4",
70095
+ "type": "boolean"
70096
+ },
69781
70097
  "support3d": {
69782
70098
  "description": "是否支持3d视角",
69783
70099
  "type": "boolean"
@@ -71096,6 +71412,12 @@
71096
71412
  "description": "是否围绕中心轴偏移轮廓",
71097
71413
  "type": "boolean"
71098
71414
  },
71415
+ "stackSort": {
71416
+ "default": false,
71417
+ "description": "堆积时是否排序",
71418
+ "since": "1.10.4",
71419
+ "type": "boolean"
71420
+ },
71099
71421
  "support3d": {
71100
71422
  "description": "是否支持3d视角",
71101
71423
  "type": "boolean"
@@ -72027,6 +72349,12 @@
72027
72349
  "description": "是否围绕中心轴偏移轮廓",
72028
72350
  "type": "boolean"
72029
72351
  },
72352
+ "stackSort": {
72353
+ "default": false,
72354
+ "description": "堆积时是否排序",
72355
+ "since": "1.10.4",
72356
+ "type": "boolean"
72357
+ },
72030
72358
  "support3d": {
72031
72359
  "description": "是否支持3d视角",
72032
72360
  "type": "boolean"
@@ -72644,7 +72972,7 @@
72644
72972
  },
72645
72973
  "Map<Function,(...args:any[])=>void>": {
72646
72974
  "properties": {
72647
- "__@toStringTag@12942": {
72975
+ "__@toStringTag@12945": {
72648
72976
  "type": "string"
72649
72977
  },
72650
72978
  "size": {
@@ -72652,14 +72980,14 @@
72652
72980
  }
72653
72981
  },
72654
72982
  "required": [
72655
- "__@toStringTag@12942",
72983
+ "__@toStringTag@12945",
72656
72984
  "size"
72657
72985
  ],
72658
72986
  "type": "object"
72659
72987
  },
72660
72988
  "Map<number,IGraphicPicker>": {
72661
72989
  "properties": {
72662
- "__@toStringTag@12942": {
72990
+ "__@toStringTag@12945": {
72663
72991
  "type": "string"
72664
72992
  },
72665
72993
  "size": {
@@ -72667,14 +72995,14 @@
72667
72995
  }
72668
72996
  },
72669
72997
  "required": [
72670
- "__@toStringTag@12942",
72998
+ "__@toStringTag@12945",
72671
72999
  "size"
72672
73000
  ],
72673
73001
  "type": "object"
72674
73002
  },
72675
73003
  "Map<number,IGraphicRender>": {
72676
73004
  "properties": {
72677
- "__@toStringTag@12942": {
73005
+ "__@toStringTag@12945": {
72678
73006
  "type": "string"
72679
73007
  },
72680
73008
  "size": {
@@ -72682,14 +73010,14 @@
72682
73010
  }
72683
73011
  },
72684
73012
  "required": [
72685
- "__@toStringTag@12942",
73013
+ "__@toStringTag@12945",
72686
73014
  "size"
72687
73015
  ],
72688
73016
  "type": "object"
72689
73017
  },
72690
73018
  "Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
72691
73019
  "properties": {
72692
- "__@toStringTag@12942": {
73020
+ "__@toStringTag@12945": {
72693
73021
  "type": "string"
72694
73022
  },
72695
73023
  "size": {
@@ -72697,14 +73025,14 @@
72697
73025
  }
72698
73026
  },
72699
73027
  "required": [
72700
- "__@toStringTag@12942",
73028
+ "__@toStringTag@12945",
72701
73029
  "size"
72702
73030
  ],
72703
73031
  "type": "object"
72704
73032
  },
72705
73033
  "Map<string,Map<number,IGraphicRender>>": {
72706
73034
  "properties": {
72707
- "__@toStringTag@12942": {
73035
+ "__@toStringTag@12945": {
72708
73036
  "type": "string"
72709
73037
  },
72710
73038
  "size": {
@@ -72712,14 +73040,14 @@
72712
73040
  }
72713
73041
  },
72714
73042
  "required": [
72715
- "__@toStringTag@12942",
73043
+ "__@toStringTag@12945",
72716
73044
  "size"
72717
73045
  ],
72718
73046
  "type": "object"
72719
73047
  },
72720
73048
  "Map<string,any>": {
72721
73049
  "properties": {
72722
- "__@toStringTag@12942": {
73050
+ "__@toStringTag@12945": {
72723
73051
  "type": "string"
72724
73052
  },
72725
73053
  "size": {
@@ -72727,14 +73055,14 @@
72727
73055
  }
72728
73056
  },
72729
73057
  "required": [
72730
- "__@toStringTag@12942",
73058
+ "__@toStringTag@12945",
72731
73059
  "size"
72732
73060
  ],
72733
73061
  "type": "object"
72734
73062
  },
72735
73063
  "Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
72736
73064
  "properties": {
72737
- "__@toStringTag@12942": {
73065
+ "__@toStringTag@12945": {
72738
73066
  "type": "string"
72739
73067
  },
72740
73068
  "size": {
@@ -72742,14 +73070,14 @@
72742
73070
  }
72743
73071
  },
72744
73072
  "required": [
72745
- "__@toStringTag@12942",
73073
+ "__@toStringTag@12945",
72746
73074
  "size"
72747
73075
  ],
72748
73076
  "type": "object"
72749
73077
  },
72750
73078
  "Map<string|HTMLElement,{container:string|HTMLElement;dom:any;wrapGroup:any;root?:any;}>": {
72751
73079
  "properties": {
72752
- "__@toStringTag@12942": {
73080
+ "__@toStringTag@12945": {
72753
73081
  "type": "string"
72754
73082
  },
72755
73083
  "size": {
@@ -72757,14 +73085,14 @@
72757
73085
  }
72758
73086
  },
72759
73087
  "required": [
72760
- "__@toStringTag@12942",
73088
+ "__@toStringTag@12945",
72761
73089
  "size"
72762
73090
  ],
72763
73091
  "type": "object"
72764
73092
  },
72765
73093
  "Map<string|number,IAnimate>": {
72766
73094
  "properties": {
72767
- "__@toStringTag@12942": {
73095
+ "__@toStringTag@12945": {
72768
73096
  "type": "string"
72769
73097
  },
72770
73098
  "size": {
@@ -72772,7 +73100,7 @@
72772
73100
  }
72773
73101
  },
72774
73102
  "required": [
72775
- "__@toStringTag@12942",
73103
+ "__@toStringTag@12945",
72776
73104
  "size"
72777
73105
  ],
72778
73106
  "type": "object"
@@ -72969,6 +73297,7 @@
72969
73297
  "seriesStyle",
72970
73298
  "sizeLegend",
72971
73299
  "stackInverse",
73300
+ "stackSort",
72972
73301
  "sunburst",
72973
73302
  "theme",
72974
73303
  "title",
@@ -88027,6 +88356,12 @@
88027
88356
  "since": "1.4.0",
88028
88357
  "type": "boolean"
88029
88358
  },
88359
+ "stackSort": {
88360
+ "default": false,
88361
+ "description": "堆积时是否排序",
88362
+ "since": "1.10.4",
88363
+ "type": "boolean"
88364
+ },
88030
88365
  "theme": {
88031
88366
  "anyOf": [
88032
88367
  {
@@ -91606,34 +91941,34 @@
91606
91941
  },
91607
91942
  "Promise<FontFaceSet>": {
91608
91943
  "properties": {
91609
- "__@toStringTag@12942": {
91944
+ "__@toStringTag@12945": {
91610
91945
  "type": "string"
91611
91946
  }
91612
91947
  },
91613
91948
  "required": [
91614
- "__@toStringTag@12942"
91949
+ "__@toStringTag@12945"
91615
91950
  ],
91616
91951
  "type": "object"
91617
91952
  },
91618
91953
  "Promise<ServiceWorkerRegistration>": {
91619
91954
  "properties": {
91620
- "__@toStringTag@12942": {
91955
+ "__@toStringTag@12945": {
91621
91956
  "type": "string"
91622
91957
  }
91623
91958
  },
91624
91959
  "required": [
91625
- "__@toStringTag@12942"
91960
+ "__@toStringTag@12945"
91626
91961
  ],
91627
91962
  "type": "object"
91628
91963
  },
91629
91964
  "Promise<any>": {
91630
91965
  "properties": {
91631
- "__@toStringTag@12942": {
91966
+ "__@toStringTag@12945": {
91632
91967
  "type": "string"
91633
91968
  }
91634
91969
  },
91635
91970
  "required": [
91636
- "__@toStringTag@12942"
91971
+ "__@toStringTag@12945"
91637
91972
  ],
91638
91973
  "type": "object"
91639
91974
  },