@visactor/vchart-schema 1.8.10-alpha.0 → 1.9.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/vchart.json +2115 -279
package/vchart.json
CHANGED
|
@@ -8558,6 +8558,58 @@
|
|
|
8558
8558
|
"EventTarget": {
|
|
8559
8559
|
"type": "object"
|
|
8560
8560
|
},
|
|
8561
|
+
"EventType": {
|
|
8562
|
+
"enum": [
|
|
8563
|
+
"click",
|
|
8564
|
+
"dblclick",
|
|
8565
|
+
"drag",
|
|
8566
|
+
"dragend",
|
|
8567
|
+
"dragenter",
|
|
8568
|
+
"dragleave",
|
|
8569
|
+
"dragover",
|
|
8570
|
+
"dragstart",
|
|
8571
|
+
"drop",
|
|
8572
|
+
"mousedown",
|
|
8573
|
+
"mouseenter",
|
|
8574
|
+
"mouseleave",
|
|
8575
|
+
"mousemove",
|
|
8576
|
+
"mouseout",
|
|
8577
|
+
"mouseover",
|
|
8578
|
+
"mouseup",
|
|
8579
|
+
"mouseupoutside",
|
|
8580
|
+
"pan",
|
|
8581
|
+
"panend",
|
|
8582
|
+
"panstart",
|
|
8583
|
+
"pinch",
|
|
8584
|
+
"pinchend",
|
|
8585
|
+
"pinchstart",
|
|
8586
|
+
"pointerdown",
|
|
8587
|
+
"pointerenter",
|
|
8588
|
+
"pointerleave",
|
|
8589
|
+
"pointermove",
|
|
8590
|
+
"pointerout",
|
|
8591
|
+
"pointerover",
|
|
8592
|
+
"pointertap",
|
|
8593
|
+
"pointerup",
|
|
8594
|
+
"pointerupoutside",
|
|
8595
|
+
"press",
|
|
8596
|
+
"pressend",
|
|
8597
|
+
"pressup",
|
|
8598
|
+
"resize",
|
|
8599
|
+
"rightdown",
|
|
8600
|
+
"rightup",
|
|
8601
|
+
"rightupoutside",
|
|
8602
|
+
"swipe",
|
|
8603
|
+
"tap",
|
|
8604
|
+
"touchcancel",
|
|
8605
|
+
"touchend",
|
|
8606
|
+
"touchendoutside",
|
|
8607
|
+
"touchmove",
|
|
8608
|
+
"touchstart",
|
|
8609
|
+
"wheel"
|
|
8610
|
+
],
|
|
8611
|
+
"type": "string"
|
|
8612
|
+
},
|
|
8561
8613
|
"External": {
|
|
8562
8614
|
"type": "object"
|
|
8563
8615
|
},
|
|
@@ -18083,6 +18135,9 @@
|
|
|
18083
18135
|
"$ref": "#/definitions/Record<string,ConvertToMarkStyleSpec<ILineMarkSpec>|IMarkStateSpec<ILineMarkSpec>>",
|
|
18084
18136
|
"description": "不同状态下的样式配置"
|
|
18085
18137
|
},
|
|
18138
|
+
"stateSort": {
|
|
18139
|
+
"typeof": "function"
|
|
18140
|
+
},
|
|
18086
18141
|
"style": {
|
|
18087
18142
|
"$ref": "#/definitions/ConvertToMarkStyleSpec<ILineMarkSpec>_2",
|
|
18088
18143
|
"description": "默认样式设置"
|
|
@@ -18104,6 +18159,15 @@
|
|
|
18104
18159
|
},
|
|
18105
18160
|
"IArcLabelSpec": {
|
|
18106
18161
|
"properties": {
|
|
18162
|
+
"alignSelf": {
|
|
18163
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
18164
|
+
"enum": [
|
|
18165
|
+
"end",
|
|
18166
|
+
"middle",
|
|
18167
|
+
"start"
|
|
18168
|
+
],
|
|
18169
|
+
"type": "string"
|
|
18170
|
+
},
|
|
18107
18171
|
"animation": {
|
|
18108
18172
|
"anyOf": [
|
|
18109
18173
|
{
|
|
@@ -18160,6 +18224,11 @@
|
|
|
18160
18224
|
"id": {
|
|
18161
18225
|
"$ref": "#/definitions/StringOrNumber"
|
|
18162
18226
|
},
|
|
18227
|
+
"indent": {
|
|
18228
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
18229
|
+
"description": "模块的布局锁进",
|
|
18230
|
+
"since": "1.8.6"
|
|
18231
|
+
},
|
|
18163
18232
|
"interactive": {
|
|
18164
18233
|
"description": "是否支持交互。@default false",
|
|
18165
18234
|
"type": "boolean"
|
|
@@ -18368,6 +18437,12 @@
|
|
|
18368
18437
|
"description": "是否支持3D",
|
|
18369
18438
|
"type": "boolean"
|
|
18370
18439
|
},
|
|
18440
|
+
"syncState": {
|
|
18441
|
+
"default": false,
|
|
18442
|
+
"description": "是否同步数据图元的状态变化",
|
|
18443
|
+
"since": "1.9.0",
|
|
18444
|
+
"type": "boolean"
|
|
18445
|
+
},
|
|
18371
18446
|
"textType": {
|
|
18372
18447
|
"type": "string"
|
|
18373
18448
|
},
|
|
@@ -18895,6 +18970,12 @@
|
|
|
18895
18970
|
"$ref": "#/definitions/StringOrNumber",
|
|
18896
18971
|
"description": "用户自定义的 series id"
|
|
18897
18972
|
},
|
|
18973
|
+
"interactions": {
|
|
18974
|
+
"items": {
|
|
18975
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
18976
|
+
},
|
|
18977
|
+
"type": "array"
|
|
18978
|
+
},
|
|
18898
18979
|
"invalidType": {
|
|
18899
18980
|
"$ref": "#/definitions/IInvalidType",
|
|
18900
18981
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -19927,6 +20008,12 @@
|
|
|
19927
20008
|
"$ref": "#/definitions/StringOrNumber",
|
|
19928
20009
|
"description": "用户自定义的 series id"
|
|
19929
20010
|
},
|
|
20011
|
+
"interactions": {
|
|
20012
|
+
"items": {
|
|
20013
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
20014
|
+
},
|
|
20015
|
+
"type": "array"
|
|
20016
|
+
},
|
|
19930
20017
|
"invalidType": {
|
|
19931
20018
|
"$ref": "#/definitions/IInvalidType",
|
|
19932
20019
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -20246,6 +20333,38 @@
|
|
|
20246
20333
|
}
|
|
20247
20334
|
]
|
|
20248
20335
|
},
|
|
20336
|
+
"IBandAxisLayer": {
|
|
20337
|
+
"properties": {
|
|
20338
|
+
"forceTickCount": {
|
|
20339
|
+
"default": 5,
|
|
20340
|
+
"description": "强制设置的tick数量,可能由于数据范围导致tick值为小数",
|
|
20341
|
+
"type": "number"
|
|
20342
|
+
},
|
|
20343
|
+
"tickCount": {
|
|
20344
|
+
"anyOf": [
|
|
20345
|
+
{
|
|
20346
|
+
"typeof": "function"
|
|
20347
|
+
},
|
|
20348
|
+
{
|
|
20349
|
+
"type": "number"
|
|
20350
|
+
}
|
|
20351
|
+
],
|
|
20352
|
+
"default": 5,
|
|
20353
|
+
"description": "建议的tick数量,并不保证结果一定是配置值",
|
|
20354
|
+
"since": "1.4.0 后支持函数回调。"
|
|
20355
|
+
},
|
|
20356
|
+
"tickStep": {
|
|
20357
|
+
"description": "tick步长",
|
|
20358
|
+
"type": "number"
|
|
20359
|
+
},
|
|
20360
|
+
"visible": {
|
|
20361
|
+
"default": true,
|
|
20362
|
+
"description": "是否显示",
|
|
20363
|
+
"type": "boolean"
|
|
20364
|
+
}
|
|
20365
|
+
},
|
|
20366
|
+
"type": "object"
|
|
20367
|
+
},
|
|
20249
20368
|
"IBandAxisSpec": {
|
|
20250
20369
|
"properties": {
|
|
20251
20370
|
"bandPadding": {
|
|
@@ -20275,6 +20394,14 @@
|
|
|
20275
20394
|
"since": "1.1.0",
|
|
20276
20395
|
"type": "array"
|
|
20277
20396
|
},
|
|
20397
|
+
"layers": {
|
|
20398
|
+
"description": "每一层轴的配置\nlayer[0] 为离坐标轴线最近的轴,当且仅当 `showAllGroupLayers` 配置开启生效。",
|
|
20399
|
+
"items": {
|
|
20400
|
+
"$ref": "#/definitions/IBandAxisLayer"
|
|
20401
|
+
},
|
|
20402
|
+
"since": "1.9.0",
|
|
20403
|
+
"type": "array"
|
|
20404
|
+
},
|
|
20278
20405
|
"paddingInner": {
|
|
20279
20406
|
"anyOf": [
|
|
20280
20407
|
{
|
|
@@ -20305,6 +20432,12 @@
|
|
|
20305
20432
|
"default": 0.3,
|
|
20306
20433
|
"description": "band 轴的外边距\n** 因为有可能存在多层 scale( xField 设置成了数组,即分组场景),所以支持了数组类型,用于多层 scale 的 paddingOuter 配置**"
|
|
20307
20434
|
},
|
|
20435
|
+
"showAllGroupLayers": {
|
|
20436
|
+
"default": false,
|
|
20437
|
+
"description": "当存在多层分组场景时,是否展示所有的分组轴",
|
|
20438
|
+
"since": "1.9.0",
|
|
20439
|
+
"type": "boolean"
|
|
20440
|
+
},
|
|
20308
20441
|
"trimPadding": {
|
|
20309
20442
|
"default": false,
|
|
20310
20443
|
"description": "是否去除 band 轴两端的留白,如果为 true,则两端的 padding 为 0,\n**并且 bandPadding、paddingInner 和 paddingOuter 的设置将被忽略**。",
|
|
@@ -20425,7 +20558,17 @@
|
|
|
20425
20558
|
"description": "图元配置"
|
|
20426
20559
|
},
|
|
20427
20560
|
"barBackground": {
|
|
20428
|
-
"
|
|
20561
|
+
"allOf": [
|
|
20562
|
+
{
|
|
20563
|
+
"typeof": "function"
|
|
20564
|
+
},
|
|
20565
|
+
{
|
|
20566
|
+
"typeof": "function"
|
|
20567
|
+
},
|
|
20568
|
+
{
|
|
20569
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
20570
|
+
}
|
|
20571
|
+
],
|
|
20429
20572
|
"description": "柱状背景图元",
|
|
20430
20573
|
"since": "1.6.0"
|
|
20431
20574
|
},
|
|
@@ -20583,6 +20726,12 @@
|
|
|
20583
20726
|
"$ref": "#/definitions/StringOrNumber",
|
|
20584
20727
|
"description": "用户自定义的 series id"
|
|
20585
20728
|
},
|
|
20729
|
+
"interactions": {
|
|
20730
|
+
"items": {
|
|
20731
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
20732
|
+
},
|
|
20733
|
+
"type": "array"
|
|
20734
|
+
},
|
|
20586
20735
|
"invalidType": {
|
|
20587
20736
|
"$ref": "#/definitions/IInvalidType",
|
|
20588
20737
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -21141,6 +21290,16 @@
|
|
|
21141
21290
|
},
|
|
21142
21291
|
"type": "object"
|
|
21143
21292
|
},
|
|
21293
|
+
"IBarBackgroundSpec": {
|
|
21294
|
+
"properties": {
|
|
21295
|
+
"fieldLevel": {
|
|
21296
|
+
"description": "决定柱状背景图元是否显示在组的层级上,以及显示在哪个层级上。\n例如:在分组柱状图中,xField 为 `['A', 'B', 'C']`,如果配置为 0,则以 'A' 划分的每个组对应一个整体的 barBackground;如果配置为 1,则以 'B' 划分的每个组对应一个整体的 barBackground;如果配置为 2,则每个柱条对应一个 barBackground。",
|
|
21297
|
+
"since": "1.9.0",
|
|
21298
|
+
"type": "number"
|
|
21299
|
+
}
|
|
21300
|
+
},
|
|
21301
|
+
"type": "object"
|
|
21302
|
+
},
|
|
21144
21303
|
"IBarChartSpec": {
|
|
21145
21304
|
"properties": {
|
|
21146
21305
|
"activePoint": {
|
|
@@ -21252,7 +21411,17 @@
|
|
|
21252
21411
|
"description": "图元配置"
|
|
21253
21412
|
},
|
|
21254
21413
|
"barBackground": {
|
|
21255
|
-
"
|
|
21414
|
+
"allOf": [
|
|
21415
|
+
{
|
|
21416
|
+
"typeof": "function"
|
|
21417
|
+
},
|
|
21418
|
+
{
|
|
21419
|
+
"typeof": "function"
|
|
21420
|
+
},
|
|
21421
|
+
{
|
|
21422
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
21423
|
+
}
|
|
21424
|
+
],
|
|
21256
21425
|
"description": "柱状背景图元",
|
|
21257
21426
|
"since": "1.6.0"
|
|
21258
21427
|
},
|
|
@@ -21410,6 +21579,12 @@
|
|
|
21410
21579
|
"$ref": "#/definitions/StringOrNumber",
|
|
21411
21580
|
"description": "用户自定义的 series id"
|
|
21412
21581
|
},
|
|
21582
|
+
"interactions": {
|
|
21583
|
+
"items": {
|
|
21584
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
21585
|
+
},
|
|
21586
|
+
"type": "array"
|
|
21587
|
+
},
|
|
21413
21588
|
"invalidType": {
|
|
21414
21589
|
"$ref": "#/definitions/IInvalidType",
|
|
21415
21590
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -22037,7 +22212,17 @@
|
|
|
22037
22212
|
"description": "图元配置"
|
|
22038
22213
|
},
|
|
22039
22214
|
"barBackground": {
|
|
22040
|
-
"
|
|
22215
|
+
"allOf": [
|
|
22216
|
+
{
|
|
22217
|
+
"typeof": "function"
|
|
22218
|
+
},
|
|
22219
|
+
{
|
|
22220
|
+
"typeof": "function"
|
|
22221
|
+
},
|
|
22222
|
+
{
|
|
22223
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
22224
|
+
}
|
|
22225
|
+
],
|
|
22041
22226
|
"description": "柱状背景图元",
|
|
22042
22227
|
"since": "1.6.0"
|
|
22043
22228
|
},
|
|
@@ -22137,6 +22322,12 @@
|
|
|
22137
22322
|
"$ref": "#/definitions/StringOrNumber",
|
|
22138
22323
|
"description": "用户自定义的 series id"
|
|
22139
22324
|
},
|
|
22325
|
+
"interactions": {
|
|
22326
|
+
"items": {
|
|
22327
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
22328
|
+
},
|
|
22329
|
+
"type": "array"
|
|
22330
|
+
},
|
|
22140
22331
|
"invalidType": {
|
|
22141
22332
|
"$ref": "#/definitions/IInvalidType",
|
|
22142
22333
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -22321,7 +22512,14 @@
|
|
|
22321
22512
|
"$ref": "#/definitions/Partial<IMarkTheme<IRectMarkSpec>>"
|
|
22322
22513
|
},
|
|
22323
22514
|
"barBackground": {
|
|
22324
|
-
"
|
|
22515
|
+
"allOf": [
|
|
22516
|
+
{
|
|
22517
|
+
"$ref": "#/definitions/Partial<IMarkTheme<IRectMarkSpec>>"
|
|
22518
|
+
},
|
|
22519
|
+
{
|
|
22520
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
22521
|
+
}
|
|
22522
|
+
],
|
|
22325
22523
|
"description": "柱状背景图元",
|
|
22326
22524
|
"since": "1.6.0"
|
|
22327
22525
|
},
|
|
@@ -22343,6 +22541,23 @@
|
|
|
22343
22541
|
},
|
|
22344
22542
|
"type": "object"
|
|
22345
22543
|
},
|
|
22544
|
+
"IBaseInteractionSpec": {
|
|
22545
|
+
"properties": {
|
|
22546
|
+
"markIds": {
|
|
22547
|
+
"items": {
|
|
22548
|
+
"$ref": "#/definitions/StringOrNumber"
|
|
22549
|
+
},
|
|
22550
|
+
"type": "array"
|
|
22551
|
+
},
|
|
22552
|
+
"markNames": {
|
|
22553
|
+
"items": {
|
|
22554
|
+
"$ref": "#/definitions/StringOrNumber"
|
|
22555
|
+
},
|
|
22556
|
+
"type": "array"
|
|
22557
|
+
}
|
|
22558
|
+
},
|
|
22559
|
+
"type": "object"
|
|
22560
|
+
},
|
|
22346
22561
|
"IBaseLayoutSpec": {
|
|
22347
22562
|
"properties": {
|
|
22348
22563
|
"type": {
|
|
@@ -22758,6 +22973,12 @@
|
|
|
22758
22973
|
"$ref": "#/definitions/StringOrNumber",
|
|
22759
22974
|
"description": "用户自定义的 series id"
|
|
22760
22975
|
},
|
|
22976
|
+
"interactions": {
|
|
22977
|
+
"items": {
|
|
22978
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
22979
|
+
},
|
|
22980
|
+
"type": "array"
|
|
22981
|
+
},
|
|
22761
22982
|
"invalidType": {
|
|
22762
22983
|
"$ref": "#/definitions/IInvalidType",
|
|
22763
22984
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -23649,6 +23870,12 @@
|
|
|
23649
23870
|
"$ref": "#/definitions/StringOrNumber",
|
|
23650
23871
|
"description": "用户自定义的 series id"
|
|
23651
23872
|
},
|
|
23873
|
+
"interactions": {
|
|
23874
|
+
"items": {
|
|
23875
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
23876
|
+
},
|
|
23877
|
+
"type": "array"
|
|
23878
|
+
},
|
|
23652
23879
|
"invalidType": {
|
|
23653
23880
|
"$ref": "#/definitions/IInvalidType",
|
|
23654
23881
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -24266,259 +24493,50 @@
|
|
|
24266
24493
|
"ICartesianAxisSpec": {
|
|
24267
24494
|
"anyOf": [
|
|
24268
24495
|
{
|
|
24269
|
-
"
|
|
24270
|
-
{
|
|
24271
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24272
|
-
},
|
|
24273
|
-
{
|
|
24274
|
-
"typeof": "function"
|
|
24275
|
-
},
|
|
24276
|
-
{
|
|
24277
|
-
"typeof": "function"
|
|
24278
|
-
},
|
|
24279
|
-
{
|
|
24280
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24281
|
-
},
|
|
24282
|
-
{
|
|
24283
|
-
"typeof": "function"
|
|
24284
|
-
}
|
|
24285
|
-
]
|
|
24286
|
-
},
|
|
24287
|
-
{
|
|
24288
|
-
"allOf": [
|
|
24289
|
-
{
|
|
24290
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24291
|
-
},
|
|
24292
|
-
{
|
|
24293
|
-
"typeof": "function"
|
|
24294
|
-
},
|
|
24295
|
-
{
|
|
24296
|
-
"typeof": "function"
|
|
24297
|
-
},
|
|
24298
|
-
{
|
|
24299
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24300
|
-
},
|
|
24301
|
-
{
|
|
24302
|
-
"typeof": "function"
|
|
24303
|
-
}
|
|
24304
|
-
]
|
|
24305
|
-
},
|
|
24306
|
-
{
|
|
24307
|
-
"allOf": [
|
|
24308
|
-
{
|
|
24309
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24310
|
-
},
|
|
24311
|
-
{
|
|
24312
|
-
"typeof": "function"
|
|
24313
|
-
},
|
|
24314
|
-
{
|
|
24315
|
-
"typeof": "function"
|
|
24316
|
-
},
|
|
24317
|
-
{
|
|
24318
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24319
|
-
},
|
|
24320
|
-
{
|
|
24321
|
-
"typeof": "function"
|
|
24322
|
-
}
|
|
24323
|
-
]
|
|
24496
|
+
"$ref": "#/definitions/ICartesianLinearAxisSpec"
|
|
24324
24497
|
},
|
|
24325
24498
|
{
|
|
24326
|
-
"
|
|
24327
|
-
{
|
|
24328
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24329
|
-
},
|
|
24330
|
-
{
|
|
24331
|
-
"typeof": "function"
|
|
24332
|
-
},
|
|
24333
|
-
{
|
|
24334
|
-
"typeof": "function"
|
|
24335
|
-
},
|
|
24336
|
-
{
|
|
24337
|
-
"$ref": "#/definitions/IBandAxisSpec"
|
|
24338
|
-
},
|
|
24339
|
-
{
|
|
24340
|
-
"typeof": "function"
|
|
24341
|
-
}
|
|
24342
|
-
]
|
|
24343
|
-
},
|
|
24344
|
-
{
|
|
24345
|
-
"allOf": [
|
|
24346
|
-
{
|
|
24347
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24348
|
-
},
|
|
24349
|
-
{
|
|
24350
|
-
"typeof": "function"
|
|
24351
|
-
},
|
|
24352
|
-
{
|
|
24353
|
-
"typeof": "function"
|
|
24354
|
-
},
|
|
24355
|
-
{
|
|
24356
|
-
"$ref": "#/definitions/IBandAxisSpec"
|
|
24357
|
-
},
|
|
24358
|
-
{
|
|
24359
|
-
"typeof": "function"
|
|
24360
|
-
}
|
|
24361
|
-
]
|
|
24362
|
-
},
|
|
24363
|
-
{
|
|
24364
|
-
"allOf": [
|
|
24365
|
-
{
|
|
24366
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24367
|
-
},
|
|
24368
|
-
{
|
|
24369
|
-
"typeof": "function"
|
|
24370
|
-
},
|
|
24371
|
-
{
|
|
24372
|
-
"typeof": "function"
|
|
24373
|
-
},
|
|
24374
|
-
{
|
|
24375
|
-
"$ref": "#/definitions/IBandAxisSpec"
|
|
24376
|
-
},
|
|
24377
|
-
{
|
|
24378
|
-
"typeof": "function"
|
|
24379
|
-
}
|
|
24380
|
-
]
|
|
24499
|
+
"$ref": "#/definitions/ICartesianBandAxisSpec"
|
|
24381
24500
|
},
|
|
24382
24501
|
{
|
|
24383
24502
|
"$ref": "#/definitions/ICartesianTimeAxisSpec"
|
|
24384
24503
|
},
|
|
24385
24504
|
{
|
|
24386
|
-
"
|
|
24387
|
-
{
|
|
24388
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24389
|
-
},
|
|
24390
|
-
{
|
|
24391
|
-
"typeof": "function"
|
|
24392
|
-
},
|
|
24393
|
-
{
|
|
24394
|
-
"typeof": "function"
|
|
24395
|
-
},
|
|
24396
|
-
{
|
|
24397
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24398
|
-
},
|
|
24399
|
-
{
|
|
24400
|
-
"typeof": "function"
|
|
24401
|
-
},
|
|
24402
|
-
{
|
|
24403
|
-
"typeof": "function"
|
|
24404
|
-
}
|
|
24405
|
-
]
|
|
24505
|
+
"$ref": "#/definitions/ICartesianLogAxisSpec"
|
|
24406
24506
|
},
|
|
24407
24507
|
{
|
|
24408
|
-
"
|
|
24409
|
-
|
|
24410
|
-
|
|
24411
|
-
|
|
24412
|
-
|
|
24413
|
-
|
|
24414
|
-
|
|
24415
|
-
{
|
|
24416
|
-
"typeof": "function"
|
|
24417
|
-
},
|
|
24418
|
-
{
|
|
24419
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24420
|
-
},
|
|
24421
|
-
{
|
|
24422
|
-
"typeof": "function"
|
|
24423
|
-
},
|
|
24424
|
-
{
|
|
24425
|
-
"typeof": "function"
|
|
24426
|
-
}
|
|
24427
|
-
]
|
|
24428
|
-
},
|
|
24508
|
+
"$ref": "#/definitions/ICartesianSymlogAxisSpec"
|
|
24509
|
+
}
|
|
24510
|
+
],
|
|
24511
|
+
"description": "spec"
|
|
24512
|
+
},
|
|
24513
|
+
"ICartesianBandAxisSpec": {
|
|
24514
|
+
"allOf": [
|
|
24429
24515
|
{
|
|
24430
|
-
"
|
|
24431
|
-
{
|
|
24432
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24433
|
-
},
|
|
24434
|
-
{
|
|
24435
|
-
"typeof": "function"
|
|
24436
|
-
},
|
|
24437
|
-
{
|
|
24438
|
-
"typeof": "function"
|
|
24439
|
-
},
|
|
24440
|
-
{
|
|
24441
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24442
|
-
},
|
|
24443
|
-
{
|
|
24444
|
-
"typeof": "function"
|
|
24445
|
-
},
|
|
24446
|
-
{
|
|
24447
|
-
"typeof": "function"
|
|
24448
|
-
}
|
|
24449
|
-
]
|
|
24516
|
+
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24450
24517
|
},
|
|
24451
24518
|
{
|
|
24452
|
-
"
|
|
24453
|
-
{
|
|
24454
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24455
|
-
},
|
|
24456
|
-
{
|
|
24457
|
-
"typeof": "function"
|
|
24458
|
-
},
|
|
24459
|
-
{
|
|
24460
|
-
"typeof": "function"
|
|
24461
|
-
},
|
|
24462
|
-
{
|
|
24463
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24464
|
-
},
|
|
24465
|
-
{
|
|
24466
|
-
"typeof": "function"
|
|
24467
|
-
},
|
|
24468
|
-
{
|
|
24469
|
-
"typeof": "function"
|
|
24470
|
-
}
|
|
24471
|
-
]
|
|
24519
|
+
"typeof": "function"
|
|
24472
24520
|
},
|
|
24473
24521
|
{
|
|
24474
|
-
"
|
|
24475
|
-
{
|
|
24476
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24477
|
-
},
|
|
24478
|
-
{
|
|
24479
|
-
"typeof": "function"
|
|
24480
|
-
},
|
|
24481
|
-
{
|
|
24482
|
-
"typeof": "function"
|
|
24483
|
-
},
|
|
24484
|
-
{
|
|
24485
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24486
|
-
},
|
|
24487
|
-
{
|
|
24488
|
-
"typeof": "function"
|
|
24489
|
-
},
|
|
24490
|
-
{
|
|
24491
|
-
"typeof": "function"
|
|
24492
|
-
}
|
|
24493
|
-
]
|
|
24522
|
+
"$ref": "#/definitions/IBandAxisSpec"
|
|
24494
24523
|
},
|
|
24495
24524
|
{
|
|
24496
|
-
"
|
|
24497
|
-
{
|
|
24498
|
-
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24499
|
-
},
|
|
24500
|
-
{
|
|
24501
|
-
"typeof": "function"
|
|
24502
|
-
},
|
|
24503
|
-
{
|
|
24504
|
-
"typeof": "function"
|
|
24505
|
-
},
|
|
24506
|
-
{
|
|
24507
|
-
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24508
|
-
},
|
|
24509
|
-
{
|
|
24510
|
-
"typeof": "function"
|
|
24511
|
-
},
|
|
24512
|
-
{
|
|
24513
|
-
"typeof": "function"
|
|
24514
|
-
}
|
|
24515
|
-
]
|
|
24525
|
+
"typeof": "function"
|
|
24516
24526
|
}
|
|
24517
|
-
]
|
|
24518
|
-
"description": "spec"
|
|
24527
|
+
]
|
|
24519
24528
|
},
|
|
24520
24529
|
"ICartesianCrosshairSpec": {
|
|
24521
24530
|
"properties": {
|
|
24531
|
+
"alignSelf": {
|
|
24532
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
24533
|
+
"enum": [
|
|
24534
|
+
"end",
|
|
24535
|
+
"middle",
|
|
24536
|
+
"start"
|
|
24537
|
+
],
|
|
24538
|
+
"type": "string"
|
|
24539
|
+
},
|
|
24522
24540
|
"bottom": {
|
|
24523
24541
|
"$ref": "#/definitions/ILayoutNumber",
|
|
24524
24542
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -24542,6 +24560,11 @@
|
|
|
24542
24560
|
"id": {
|
|
24543
24561
|
"$ref": "#/definitions/StringOrNumber"
|
|
24544
24562
|
},
|
|
24563
|
+
"indent": {
|
|
24564
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
24565
|
+
"description": "模块的布局锁进",
|
|
24566
|
+
"since": "1.8.6"
|
|
24567
|
+
},
|
|
24545
24568
|
"labelZIndex": {
|
|
24546
24569
|
"description": "crosshair 文本的显示层级",
|
|
24547
24570
|
"type": "number"
|
|
@@ -24558,6 +24581,11 @@
|
|
|
24558
24581
|
"$ref": "#/definitions/ILayoutNumber",
|
|
24559
24582
|
"description": "模块绝对布局下,与图表左侧的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
24560
24583
|
},
|
|
24584
|
+
"lockAfterClick": {
|
|
24585
|
+
"description": "点击后锁定,只有点击才可以更新位置或者解锁",
|
|
24586
|
+
"since": "1.9.0",
|
|
24587
|
+
"type": "boolean"
|
|
24588
|
+
},
|
|
24561
24589
|
"maxHeight": {
|
|
24562
24590
|
"$ref": "#/definitions/ILayoutNumber",
|
|
24563
24591
|
"description": "模块的布局最大高度"
|
|
@@ -24694,6 +24722,9 @@
|
|
|
24694
24722
|
"none"
|
|
24695
24723
|
],
|
|
24696
24724
|
"type": "string"
|
|
24725
|
+
},
|
|
24726
|
+
{
|
|
24727
|
+
"type": "number"
|
|
24697
24728
|
}
|
|
24698
24729
|
],
|
|
24699
24730
|
"description": "隐藏crosshair的触发方式(目前仅支持和trigger一致的设置以及none)"
|
|
@@ -24740,6 +24771,41 @@
|
|
|
24740
24771
|
}
|
|
24741
24772
|
]
|
|
24742
24773
|
},
|
|
24774
|
+
"ICartesianLinearAxisSpec": {
|
|
24775
|
+
"allOf": [
|
|
24776
|
+
{
|
|
24777
|
+
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24778
|
+
},
|
|
24779
|
+
{
|
|
24780
|
+
"typeof": "function"
|
|
24781
|
+
},
|
|
24782
|
+
{
|
|
24783
|
+
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24784
|
+
},
|
|
24785
|
+
{
|
|
24786
|
+
"typeof": "function"
|
|
24787
|
+
}
|
|
24788
|
+
]
|
|
24789
|
+
},
|
|
24790
|
+
"ICartesianLogAxisSpec": {
|
|
24791
|
+
"allOf": [
|
|
24792
|
+
{
|
|
24793
|
+
"$ref": "#/definitions/ICommonAxisSpec"
|
|
24794
|
+
},
|
|
24795
|
+
{
|
|
24796
|
+
"typeof": "function"
|
|
24797
|
+
},
|
|
24798
|
+
{
|
|
24799
|
+
"$ref": "#/definitions/ILinearAxisSpec"
|
|
24800
|
+
},
|
|
24801
|
+
{
|
|
24802
|
+
"typeof": "function"
|
|
24803
|
+
},
|
|
24804
|
+
{
|
|
24805
|
+
"typeof": "function"
|
|
24806
|
+
}
|
|
24807
|
+
]
|
|
24808
|
+
},
|
|
24743
24809
|
"ICartesianSeriesSpec": {
|
|
24744
24810
|
"properties": {
|
|
24745
24811
|
"animation": {
|
|
@@ -24800,6 +24866,12 @@
|
|
|
24800
24866
|
"$ref": "#/definitions/StringOrNumber",
|
|
24801
24867
|
"description": "用户自定义的 series id"
|
|
24802
24868
|
},
|
|
24869
|
+
"interactions": {
|
|
24870
|
+
"items": {
|
|
24871
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
24872
|
+
},
|
|
24873
|
+
"type": "array"
|
|
24874
|
+
},
|
|
24803
24875
|
"invalidType": {
|
|
24804
24876
|
"$ref": "#/definitions/IInvalidType",
|
|
24805
24877
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -24939,6 +25011,25 @@
|
|
|
24939
25011
|
],
|
|
24940
25012
|
"type": "object"
|
|
24941
25013
|
},
|
|
25014
|
+
"ICartesianSymlogAxisSpec": {
|
|
25015
|
+
"allOf": [
|
|
25016
|
+
{
|
|
25017
|
+
"$ref": "#/definitions/ICommonAxisSpec"
|
|
25018
|
+
},
|
|
25019
|
+
{
|
|
25020
|
+
"typeof": "function"
|
|
25021
|
+
},
|
|
25022
|
+
{
|
|
25023
|
+
"$ref": "#/definitions/ILinearAxisSpec"
|
|
25024
|
+
},
|
|
25025
|
+
{
|
|
25026
|
+
"typeof": "function"
|
|
25027
|
+
},
|
|
25028
|
+
{
|
|
25029
|
+
"typeof": "function"
|
|
25030
|
+
}
|
|
25031
|
+
]
|
|
25032
|
+
},
|
|
24942
25033
|
"ICartesianTimeAxisSpec": {
|
|
24943
25034
|
"allOf": [
|
|
24944
25035
|
{
|
|
@@ -25414,6 +25505,12 @@
|
|
|
25414
25505
|
"$ref": "#/definitions/StringOrNumber",
|
|
25415
25506
|
"description": "用户自定义的 series id"
|
|
25416
25507
|
},
|
|
25508
|
+
"interactions": {
|
|
25509
|
+
"items": {
|
|
25510
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
25511
|
+
},
|
|
25512
|
+
"type": "array"
|
|
25513
|
+
},
|
|
25417
25514
|
"invalidType": {
|
|
25418
25515
|
"$ref": "#/definitions/IInvalidType",
|
|
25419
25516
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -25764,6 +25861,12 @@
|
|
|
25764
25861
|
"$ref": "#/definitions/StringOrNumber",
|
|
25765
25862
|
"description": "用户自定义的 series id"
|
|
25766
25863
|
},
|
|
25864
|
+
"interactions": {
|
|
25865
|
+
"items": {
|
|
25866
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
25867
|
+
},
|
|
25868
|
+
"type": "array"
|
|
25869
|
+
},
|
|
25767
25870
|
"invalidType": {
|
|
25768
25871
|
"$ref": "#/definitions/IInvalidType",
|
|
25769
25872
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -26176,6 +26279,12 @@
|
|
|
26176
26279
|
"description": "扇区内半径",
|
|
26177
26280
|
"type": "number"
|
|
26178
26281
|
},
|
|
26282
|
+
"interactions": {
|
|
26283
|
+
"items": {
|
|
26284
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
26285
|
+
},
|
|
26286
|
+
"type": "array"
|
|
26287
|
+
},
|
|
26179
26288
|
"invalidType": {
|
|
26180
26289
|
"$ref": "#/definitions/IInvalidType",
|
|
26181
26290
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -26613,6 +26722,12 @@
|
|
|
26613
26722
|
"description": "扇区内半径",
|
|
26614
26723
|
"type": "number"
|
|
26615
26724
|
},
|
|
26725
|
+
"interactions": {
|
|
26726
|
+
"items": {
|
|
26727
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
26728
|
+
},
|
|
26729
|
+
"type": "array"
|
|
26730
|
+
},
|
|
26616
26731
|
"invalidType": {
|
|
26617
26732
|
"$ref": "#/definitions/IInvalidType",
|
|
26618
26733
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -26928,6 +27043,15 @@
|
|
|
26928
27043
|
},
|
|
26929
27044
|
"ICommonAxisSpec": {
|
|
26930
27045
|
"properties": {
|
|
27046
|
+
"alignSelf": {
|
|
27047
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
27048
|
+
"enum": [
|
|
27049
|
+
"end",
|
|
27050
|
+
"middle",
|
|
27051
|
+
"start"
|
|
27052
|
+
],
|
|
27053
|
+
"type": "string"
|
|
27054
|
+
},
|
|
26931
27055
|
"animation": {
|
|
26932
27056
|
"default": false,
|
|
26933
27057
|
"description": "是否开启动画,默认关闭",
|
|
@@ -27027,6 +27151,11 @@
|
|
|
27027
27151
|
"id": {
|
|
27028
27152
|
"$ref": "#/definitions/StringOrNumber"
|
|
27029
27153
|
},
|
|
27154
|
+
"indent": {
|
|
27155
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
27156
|
+
"description": "模块的布局锁进",
|
|
27157
|
+
"since": "1.8.6"
|
|
27158
|
+
},
|
|
27030
27159
|
"inverse": {
|
|
27031
27160
|
"default": false,
|
|
27032
27161
|
"description": "是否开启反向坐标轴。",
|
|
@@ -27671,6 +27800,15 @@
|
|
|
27671
27800
|
},
|
|
27672
27801
|
"IComponentSpec": {
|
|
27673
27802
|
"properties": {
|
|
27803
|
+
"alignSelf": {
|
|
27804
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
27805
|
+
"enum": [
|
|
27806
|
+
"end",
|
|
27807
|
+
"middle",
|
|
27808
|
+
"start"
|
|
27809
|
+
],
|
|
27810
|
+
"type": "string"
|
|
27811
|
+
},
|
|
27674
27812
|
"bottom": {
|
|
27675
27813
|
"$ref": "#/definitions/ILayoutNumber",
|
|
27676
27814
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -27690,6 +27828,11 @@
|
|
|
27690
27828
|
"id": {
|
|
27691
27829
|
"$ref": "#/definitions/StringOrNumber"
|
|
27692
27830
|
},
|
|
27831
|
+
"indent": {
|
|
27832
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
27833
|
+
"description": "模块的布局锁进",
|
|
27834
|
+
"since": "1.8.6"
|
|
27835
|
+
},
|
|
27693
27836
|
"layoutLevel": {
|
|
27694
27837
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
27695
27838
|
"type": "number"
|
|
@@ -28351,6 +28494,15 @@
|
|
|
28351
28494
|
},
|
|
28352
28495
|
"IContinuousLegendTheme": {
|
|
28353
28496
|
"properties": {
|
|
28497
|
+
"alignSelf": {
|
|
28498
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
28499
|
+
"enum": [
|
|
28500
|
+
"end",
|
|
28501
|
+
"middle",
|
|
28502
|
+
"start"
|
|
28503
|
+
],
|
|
28504
|
+
"type": "string"
|
|
28505
|
+
},
|
|
28354
28506
|
"background": {
|
|
28355
28507
|
"typeof": "function"
|
|
28356
28508
|
},
|
|
@@ -28383,6 +28535,11 @@
|
|
|
28383
28535
|
"$ref": "#/definitions/ILayoutNumber",
|
|
28384
28536
|
"description": "模块的布局大小:高度"
|
|
28385
28537
|
},
|
|
28538
|
+
"indent": {
|
|
28539
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
28540
|
+
"description": "模块的布局锁进",
|
|
28541
|
+
"since": "1.8.6"
|
|
28542
|
+
},
|
|
28386
28543
|
"interactive": {
|
|
28387
28544
|
"default": true,
|
|
28388
28545
|
"description": "是否允许交互",
|
|
@@ -28753,6 +28910,12 @@
|
|
|
28753
28910
|
"number"
|
|
28754
28911
|
]
|
|
28755
28912
|
},
|
|
28913
|
+
"interactions": {
|
|
28914
|
+
"items": {
|
|
28915
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
28916
|
+
},
|
|
28917
|
+
"type": "array"
|
|
28918
|
+
},
|
|
28756
28919
|
"invalidType": {
|
|
28757
28920
|
"$ref": "#/definitions/IInvalidType",
|
|
28758
28921
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -29178,6 +29341,12 @@
|
|
|
29178
29341
|
"number"
|
|
29179
29342
|
]
|
|
29180
29343
|
},
|
|
29344
|
+
"interactions": {
|
|
29345
|
+
"items": {
|
|
29346
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
29347
|
+
},
|
|
29348
|
+
"type": "array"
|
|
29349
|
+
},
|
|
29181
29350
|
"invalidType": {
|
|
29182
29351
|
"$ref": "#/definitions/IInvalidType",
|
|
29183
29352
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -29546,6 +29715,15 @@
|
|
|
29546
29715
|
},
|
|
29547
29716
|
"ICrosshairTheme": {
|
|
29548
29717
|
"properties": {
|
|
29718
|
+
"alignSelf": {
|
|
29719
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
29720
|
+
"enum": [
|
|
29721
|
+
"end",
|
|
29722
|
+
"middle",
|
|
29723
|
+
"start"
|
|
29724
|
+
],
|
|
29725
|
+
"type": "string"
|
|
29726
|
+
},
|
|
29549
29727
|
"bandField": {
|
|
29550
29728
|
"$ref": "#/definitions/Partial<ICrosshairCategoryFieldSpec>",
|
|
29551
29729
|
"description": "band 轴 crosshair 的公共配置",
|
|
@@ -29577,6 +29755,11 @@
|
|
|
29577
29755
|
"id": {
|
|
29578
29756
|
"$ref": "#/definitions/StringOrNumber"
|
|
29579
29757
|
},
|
|
29758
|
+
"indent": {
|
|
29759
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
29760
|
+
"description": "模块的布局锁进",
|
|
29761
|
+
"since": "1.8.6"
|
|
29762
|
+
},
|
|
29580
29763
|
"labelZIndex": {
|
|
29581
29764
|
"description": "crosshair 文本的显示层级",
|
|
29582
29765
|
"type": "number"
|
|
@@ -29598,6 +29781,11 @@
|
|
|
29598
29781
|
"description": "linear 轴 crosshair 的公共配置",
|
|
29599
29782
|
"since": "1.3.0"
|
|
29600
29783
|
},
|
|
29784
|
+
"lockAfterClick": {
|
|
29785
|
+
"description": "点击后锁定,只有点击才可以更新位置或者解锁",
|
|
29786
|
+
"since": "1.9.0",
|
|
29787
|
+
"type": "boolean"
|
|
29788
|
+
},
|
|
29601
29789
|
"maxHeight": {
|
|
29602
29790
|
"$ref": "#/definitions/ILayoutNumber",
|
|
29603
29791
|
"description": "模块的布局最大高度"
|
|
@@ -29734,6 +29922,9 @@
|
|
|
29734
29922
|
"none"
|
|
29735
29923
|
],
|
|
29736
29924
|
"type": "string"
|
|
29925
|
+
},
|
|
29926
|
+
{
|
|
29927
|
+
"type": "number"
|
|
29737
29928
|
}
|
|
29738
29929
|
],
|
|
29739
29930
|
"description": "隐藏crosshair的触发方式(目前仅支持和trigger一致的设置以及none)"
|
|
@@ -29945,6 +30136,9 @@
|
|
|
29945
30136
|
"$ref": "#/definitions/Record<string,ConvertToMarkStyleSpec<IRuleMarkSpec|ILineMarkSpec|ITextMarkSpec|IGroupMarkSpec|IRectMarkSpec|IArcMarkSpec|IPathMarkSpec|IRect3dMarkSpec|ISymbolMarkSpec|IBoxPlotMarkSpec|IAreaMarkSpec|IProgressArcMarkSpec|IPolygonMarkSpec|IPyramid3dMarkSpec|IArc3dMarkSpec|ILinkPathMarkSpec|IRippleMarkSpec|IImageMarkSpec>|IMarkStateSpec<IRuleMarkSpec|ILineMarkSpec|ITextMarkSpec|IGroupMarkSpec|IRectMarkSpec|IArcMarkSpec|IPathMarkSpec|IRect3dMarkSpec|ISymbolMarkSpec|IBoxPlotMarkSpec|IAreaMarkSpec|IProgressArcMarkSpec|IPolygonMarkSpec|IPyramid3dMarkSpec|IArc3dMarkSpec|ILinkPathMarkSpec|IRippleMarkSpec|IImageMarkSpec>>",
|
|
29946
30137
|
"description": "不同状态下的样式配置"
|
|
29947
30138
|
},
|
|
30139
|
+
"stateSort": {
|
|
30140
|
+
"typeof": "function"
|
|
30141
|
+
},
|
|
29948
30142
|
"style": {
|
|
29949
30143
|
"$ref": "#/definitions/ConvertToMarkStyleSpec<IRuleMarkSpec|ILineMarkSpec|ITextMarkSpec|IGroupMarkSpec|IRectMarkSpec|IArcMarkSpec|IPathMarkSpec|IRect3dMarkSpec|ISymbolMarkSpec|IBoxPlotMarkSpec|IAreaMarkSpec|IProgressArcMarkSpec|IPolygonMarkSpec|IPyramid3dMarkSpec|IArc3dMarkSpec|ILinkPathMarkSpec|IRippleMarkSpec|IImageMarkSpec>",
|
|
29950
30144
|
"description": "默认样式设置"
|
|
@@ -30249,6 +30443,15 @@
|
|
|
30249
30443
|
"IDataZoomSpec": {
|
|
30250
30444
|
"description": "spec",
|
|
30251
30445
|
"properties": {
|
|
30446
|
+
"alignSelf": {
|
|
30447
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
30448
|
+
"enum": [
|
|
30449
|
+
"end",
|
|
30450
|
+
"middle",
|
|
30451
|
+
"start"
|
|
30452
|
+
],
|
|
30453
|
+
"type": "string"
|
|
30454
|
+
},
|
|
30252
30455
|
"auto": {
|
|
30253
30456
|
"description": "是否为自动模式。开启以后,组件不会导致轴 scale 缩放,end、roam 等可能导致缩放的配置将被忽略,且组件可以自动消失",
|
|
30254
30457
|
"since": "1.4.0",
|
|
@@ -30357,6 +30560,11 @@
|
|
|
30357
30560
|
"since": "1.7.0",
|
|
30358
30561
|
"type": "boolean"
|
|
30359
30562
|
},
|
|
30563
|
+
"indent": {
|
|
30564
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
30565
|
+
"description": "模块的布局锁进",
|
|
30566
|
+
"since": "1.8.6"
|
|
30567
|
+
},
|
|
30360
30568
|
"layoutLevel": {
|
|
30361
30569
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
30362
30570
|
"type": "number"
|
|
@@ -30779,6 +30987,15 @@
|
|
|
30779
30987
|
],
|
|
30780
30988
|
"type": "string"
|
|
30781
30989
|
},
|
|
30990
|
+
"alignSelf": {
|
|
30991
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
30992
|
+
"enum": [
|
|
30993
|
+
"end",
|
|
30994
|
+
"middle",
|
|
30995
|
+
"start"
|
|
30996
|
+
],
|
|
30997
|
+
"type": "string"
|
|
30998
|
+
},
|
|
30782
30999
|
"allowAllCanceled": {
|
|
30783
31000
|
"type": "boolean"
|
|
30784
31001
|
},
|
|
@@ -31103,6 +31320,11 @@
|
|
|
31103
31320
|
"html": {
|
|
31104
31321
|
"typeof": "function"
|
|
31105
31322
|
},
|
|
31323
|
+
"indent": {
|
|
31324
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
31325
|
+
"description": "模块的布局锁进",
|
|
31326
|
+
"since": "1.8.6"
|
|
31327
|
+
},
|
|
31106
31328
|
"innerBorder": {
|
|
31107
31329
|
"$ref": "#/definitions/Partial<IBorderStyle>"
|
|
31108
31330
|
},
|
|
@@ -31786,6 +32008,12 @@
|
|
|
31786
32008
|
"$ref": "#/definitions/StringOrNumber",
|
|
31787
32009
|
"description": "用户自定义的 series id"
|
|
31788
32010
|
},
|
|
32011
|
+
"interactions": {
|
|
32012
|
+
"items": {
|
|
32013
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
32014
|
+
},
|
|
32015
|
+
"type": "array"
|
|
32016
|
+
},
|
|
31789
32017
|
"invalidType": {
|
|
31790
32018
|
"$ref": "#/definitions/IInvalidType",
|
|
31791
32019
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -32033,6 +32261,86 @@
|
|
|
32033
32261
|
},
|
|
32034
32262
|
"type": "object"
|
|
32035
32263
|
},
|
|
32264
|
+
"IElementActiveByLegend": {
|
|
32265
|
+
"allOf": [
|
|
32266
|
+
{
|
|
32267
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32268
|
+
},
|
|
32269
|
+
{
|
|
32270
|
+
"$ref": "#/definitions/Pick<ElementActiveByLegendSpec,\"type\"|\"state\"|\"filterType\">"
|
|
32271
|
+
}
|
|
32272
|
+
]
|
|
32273
|
+
},
|
|
32274
|
+
"IElementActiveSpec": {
|
|
32275
|
+
"allOf": [
|
|
32276
|
+
{
|
|
32277
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32278
|
+
},
|
|
32279
|
+
{
|
|
32280
|
+
"$ref": "#/definitions/Pick<ElementActiveSpec,\"type\"|\"state\"|\"trigger\"|\"triggerOff\">"
|
|
32281
|
+
}
|
|
32282
|
+
]
|
|
32283
|
+
},
|
|
32284
|
+
"IElementHighlightByGroup": {
|
|
32285
|
+
"allOf": [
|
|
32286
|
+
{
|
|
32287
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32288
|
+
},
|
|
32289
|
+
{
|
|
32290
|
+
"$ref": "#/definitions/Pick<ElementHighlightByGroupSpec,\"type\"|\"trigger\"|\"triggerOff\"|\"blurState\"|\"highlightState\">"
|
|
32291
|
+
}
|
|
32292
|
+
]
|
|
32293
|
+
},
|
|
32294
|
+
"IElementHighlightByKeySpec": {
|
|
32295
|
+
"allOf": [
|
|
32296
|
+
{
|
|
32297
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32298
|
+
},
|
|
32299
|
+
{
|
|
32300
|
+
"$ref": "#/definitions/Pick<ElementHighlightByKeySpec,\"type\"|\"trigger\"|\"triggerOff\"|\"blurState\"|\"highlightState\">"
|
|
32301
|
+
}
|
|
32302
|
+
]
|
|
32303
|
+
},
|
|
32304
|
+
"IElementHighlightByLegend": {
|
|
32305
|
+
"allOf": [
|
|
32306
|
+
{
|
|
32307
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32308
|
+
},
|
|
32309
|
+
{
|
|
32310
|
+
"$ref": "#/definitions/Pick<ElementHighlightByLegendSpec,\"type\"|\"blurState\"|\"highlightState\"|\"filterType\">"
|
|
32311
|
+
}
|
|
32312
|
+
]
|
|
32313
|
+
},
|
|
32314
|
+
"IElementHighlightByName": {
|
|
32315
|
+
"allOf": [
|
|
32316
|
+
{
|
|
32317
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32318
|
+
},
|
|
32319
|
+
{
|
|
32320
|
+
"$ref": "#/definitions/Pick<ElementHighlightByNameSpec,\"type\"|\"blurState\"|\"highlightState\"|\"graphicName\"|\"parseData\">"
|
|
32321
|
+
}
|
|
32322
|
+
]
|
|
32323
|
+
},
|
|
32324
|
+
"IElementHighlightSpec": {
|
|
32325
|
+
"allOf": [
|
|
32326
|
+
{
|
|
32327
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32328
|
+
},
|
|
32329
|
+
{
|
|
32330
|
+
"$ref": "#/definitions/Pick<ElementHighlightSpec,\"type\"|\"trigger\"|\"triggerOff\"|\"blurState\"|\"highlightState\">"
|
|
32331
|
+
}
|
|
32332
|
+
]
|
|
32333
|
+
},
|
|
32334
|
+
"IElementSelectSpec": {
|
|
32335
|
+
"allOf": [
|
|
32336
|
+
{
|
|
32337
|
+
"$ref": "#/definitions/IBaseInteractionSpec"
|
|
32338
|
+
},
|
|
32339
|
+
{
|
|
32340
|
+
"$ref": "#/definitions/Pick<ElementSelectSpec,\"type\"|\"state\"|\"trigger\"|\"triggerOff\"|\"isMultiple\"|\"reverseState\">"
|
|
32341
|
+
}
|
|
32342
|
+
]
|
|
32343
|
+
},
|
|
32036
32344
|
"IExtensionGroupMarkSpec": {
|
|
32037
32345
|
"properties": {
|
|
32038
32346
|
"children": {
|
|
@@ -32082,6 +32390,9 @@
|
|
|
32082
32390
|
"$ref": "#/definitions/Record<string,ConvertToMarkStyleSpec<IGroupMarkSpec>|IMarkStateSpec<IGroupMarkSpec>>",
|
|
32083
32391
|
"description": "不同状态下的样式配置"
|
|
32084
32392
|
},
|
|
32393
|
+
"stateSort": {
|
|
32394
|
+
"typeof": "function"
|
|
32395
|
+
},
|
|
32085
32396
|
"style": {
|
|
32086
32397
|
"$ref": "#/definitions/ConvertToMarkStyleSpec<IGroupMarkSpec>_1",
|
|
32087
32398
|
"description": "默认样式设置"
|
|
@@ -32149,6 +32460,9 @@
|
|
|
32149
32460
|
"$ref": "#/definitions/Record<string,ConvertToMarkStyleSpec<IRuleMarkSpec|ILineMarkSpec|ITextMarkSpec|IRectMarkSpec|IArcMarkSpec|IPathMarkSpec|IRect3dMarkSpec|ISymbolMarkSpec|IBoxPlotMarkSpec|IAreaMarkSpec|IProgressArcMarkSpec|IPolygonMarkSpec|IPyramid3dMarkSpec|IArc3dMarkSpec|ILinkPathMarkSpec|IRippleMarkSpec|IImageMarkSpec>|IMarkStateSpec<IRuleMarkSpec|ILineMarkSpec|ITextMarkSpec|IRectMarkSpec|IArcMarkSpec|IPathMarkSpec|IRect3dMarkSpec|ISymbolMarkSpec|IBoxPlotMarkSpec|IAreaMarkSpec|IProgressArcMarkSpec|IPolygonMarkSpec|IPyramid3dMarkSpec|IArc3dMarkSpec|ILinkPathMarkSpec|IRippleMarkSpec|IImageMarkSpec>>",
|
|
32150
32461
|
"description": "不同状态下的样式配置"
|
|
32151
32462
|
},
|
|
32463
|
+
"stateSort": {
|
|
32464
|
+
"typeof": "function"
|
|
32465
|
+
},
|
|
32152
32466
|
"style": {
|
|
32153
32467
|
"$ref": "#/definitions/ConvertToMarkStyleSpec<IRuleMarkSpec|ILineMarkSpec|ITextMarkSpec|IRectMarkSpec|IArcMarkSpec|IPathMarkSpec|IRect3dMarkSpec|ISymbolMarkSpec|IBoxPlotMarkSpec|IAreaMarkSpec|IProgressArcMarkSpec|IPolygonMarkSpec|IPyramid3dMarkSpec|IArc3dMarkSpec|ILinkPathMarkSpec|IRippleMarkSpec|IImageMarkSpec>",
|
|
32154
32468
|
"description": "默认样式设置"
|
|
@@ -32529,6 +32843,12 @@
|
|
|
32529
32843
|
"$ref": "#/definitions/StringOrNumber",
|
|
32530
32844
|
"description": "用户自定义的 series id"
|
|
32531
32845
|
},
|
|
32846
|
+
"interactions": {
|
|
32847
|
+
"items": {
|
|
32848
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
32849
|
+
},
|
|
32850
|
+
"type": "array"
|
|
32851
|
+
},
|
|
32532
32852
|
"invalidType": {
|
|
32533
32853
|
"$ref": "#/definitions/IInvalidType",
|
|
32534
32854
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -33051,6 +33371,12 @@
|
|
|
33051
33371
|
"$ref": "#/definitions/StringOrNumber",
|
|
33052
33372
|
"description": "用户自定义的 series id"
|
|
33053
33373
|
},
|
|
33374
|
+
"interactions": {
|
|
33375
|
+
"items": {
|
|
33376
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
33377
|
+
},
|
|
33378
|
+
"type": "array"
|
|
33379
|
+
},
|
|
33054
33380
|
"invalidType": {
|
|
33055
33381
|
"$ref": "#/definitions/IInvalidType",
|
|
33056
33382
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -33350,6 +33676,9 @@
|
|
|
33350
33676
|
"$ref": "#/definitions/Record<string,ConvertToMarkStyleSpec<ITextMarkSpec>|IMarkStateSpec<ITextMarkSpec>>",
|
|
33351
33677
|
"description": "不同状态下的样式配置"
|
|
33352
33678
|
},
|
|
33679
|
+
"stateSort": {
|
|
33680
|
+
"typeof": "function"
|
|
33681
|
+
},
|
|
33353
33682
|
"style": {
|
|
33354
33683
|
"$ref": "#/definitions/ConvertToMarkStyleSpec<ITextMarkSpec>",
|
|
33355
33684
|
"description": "默认样式设置"
|
|
@@ -33441,6 +33770,9 @@
|
|
|
33441
33770
|
"$ref": "#/definitions/Record<string,ConvertToMarkStyleSpec<ITextMarkSpec>|IMarkStateSpec<ITextMarkSpec>>",
|
|
33442
33771
|
"description": "不同状态下的样式配置"
|
|
33443
33772
|
},
|
|
33773
|
+
"stateSort": {
|
|
33774
|
+
"typeof": "function"
|
|
33775
|
+
},
|
|
33444
33776
|
"style": {
|
|
33445
33777
|
"$ref": "#/definitions/ITextMarkSpec",
|
|
33446
33778
|
"description": "文字样式"
|
|
@@ -33617,6 +33949,12 @@
|
|
|
33617
33949
|
"$ref": "#/definitions/StringOrNumber",
|
|
33618
33950
|
"description": "用户自定义的 series id"
|
|
33619
33951
|
},
|
|
33952
|
+
"interactions": {
|
|
33953
|
+
"items": {
|
|
33954
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
33955
|
+
},
|
|
33956
|
+
"type": "array"
|
|
33957
|
+
},
|
|
33620
33958
|
"invalidType": {
|
|
33621
33959
|
"$ref": "#/definitions/IInvalidType",
|
|
33622
33960
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -34073,6 +34411,12 @@
|
|
|
34073
34411
|
"description": "扇区内半径",
|
|
34074
34412
|
"type": "number"
|
|
34075
34413
|
},
|
|
34414
|
+
"interactions": {
|
|
34415
|
+
"items": {
|
|
34416
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
34417
|
+
},
|
|
34418
|
+
"type": "array"
|
|
34419
|
+
},
|
|
34076
34420
|
"invalidType": {
|
|
34077
34421
|
"$ref": "#/definitions/IInvalidType",
|
|
34078
34422
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -34547,6 +34891,12 @@
|
|
|
34547
34891
|
"description": "扇区内半径",
|
|
34548
34892
|
"type": "number"
|
|
34549
34893
|
},
|
|
34894
|
+
"interactions": {
|
|
34895
|
+
"items": {
|
|
34896
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
34897
|
+
},
|
|
34898
|
+
"type": "array"
|
|
34899
|
+
},
|
|
34550
34900
|
"invalidType": {
|
|
34551
34901
|
"$ref": "#/definitions/IInvalidType",
|
|
34552
34902
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -34992,6 +35342,12 @@
|
|
|
34992
35342
|
"description": "扇区内半径",
|
|
34993
35343
|
"type": "number"
|
|
34994
35344
|
},
|
|
35345
|
+
"interactions": {
|
|
35346
|
+
"items": {
|
|
35347
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
35348
|
+
},
|
|
35349
|
+
"type": "array"
|
|
35350
|
+
},
|
|
34995
35351
|
"invalidType": {
|
|
34996
35352
|
"$ref": "#/definitions/IInvalidType",
|
|
34997
35353
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -37398,6 +37754,12 @@
|
|
|
37398
37754
|
"$ref": "#/definitions/StringOrNumber",
|
|
37399
37755
|
"description": "用户自定义的 series id"
|
|
37400
37756
|
},
|
|
37757
|
+
"interactions": {
|
|
37758
|
+
"items": {
|
|
37759
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
37760
|
+
},
|
|
37761
|
+
"type": "array"
|
|
37762
|
+
},
|
|
37401
37763
|
"invalidType": {
|
|
37402
37764
|
"$ref": "#/definitions/IInvalidType",
|
|
37403
37765
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -38064,6 +38426,12 @@
|
|
|
38064
38426
|
"$ref": "#/definitions/StringOrNumber",
|
|
38065
38427
|
"description": "用户自定义的 series id"
|
|
38066
38428
|
},
|
|
38429
|
+
"interactions": {
|
|
38430
|
+
"items": {
|
|
38431
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
38432
|
+
},
|
|
38433
|
+
"type": "array"
|
|
38434
|
+
},
|
|
38067
38435
|
"invalidType": {
|
|
38068
38436
|
"$ref": "#/definitions/IInvalidType",
|
|
38069
38437
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -38424,7 +38792,17 @@
|
|
|
38424
38792
|
"description": "图元配置"
|
|
38425
38793
|
},
|
|
38426
38794
|
"barBackground": {
|
|
38427
|
-
"
|
|
38795
|
+
"allOf": [
|
|
38796
|
+
{
|
|
38797
|
+
"typeof": "function"
|
|
38798
|
+
},
|
|
38799
|
+
{
|
|
38800
|
+
"typeof": "function"
|
|
38801
|
+
},
|
|
38802
|
+
{
|
|
38803
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
38804
|
+
}
|
|
38805
|
+
],
|
|
38428
38806
|
"description": "柱状背景图元",
|
|
38429
38807
|
"since": "1.6.0"
|
|
38430
38808
|
},
|
|
@@ -38582,6 +38960,12 @@
|
|
|
38582
38960
|
"$ref": "#/definitions/StringOrNumber",
|
|
38583
38961
|
"description": "用户自定义的 series id"
|
|
38584
38962
|
},
|
|
38963
|
+
"interactions": {
|
|
38964
|
+
"items": {
|
|
38965
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
38966
|
+
},
|
|
38967
|
+
"type": "array"
|
|
38968
|
+
},
|
|
38585
38969
|
"invalidType": {
|
|
38586
38970
|
"$ref": "#/definitions/IInvalidType",
|
|
38587
38971
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -39224,7 +39608,17 @@
|
|
|
39224
39608
|
"description": "图元配置"
|
|
39225
39609
|
},
|
|
39226
39610
|
"barBackground": {
|
|
39227
|
-
"
|
|
39611
|
+
"allOf": [
|
|
39612
|
+
{
|
|
39613
|
+
"typeof": "function"
|
|
39614
|
+
},
|
|
39615
|
+
{
|
|
39616
|
+
"typeof": "function"
|
|
39617
|
+
},
|
|
39618
|
+
{
|
|
39619
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
39620
|
+
}
|
|
39621
|
+
],
|
|
39228
39622
|
"description": "柱状背景图元",
|
|
39229
39623
|
"since": "1.6.0"
|
|
39230
39624
|
},
|
|
@@ -39382,6 +39776,12 @@
|
|
|
39382
39776
|
"$ref": "#/definitions/StringOrNumber",
|
|
39383
39777
|
"description": "用户自定义的 series id"
|
|
39384
39778
|
},
|
|
39779
|
+
"interactions": {
|
|
39780
|
+
"items": {
|
|
39781
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
39782
|
+
},
|
|
39783
|
+
"type": "array"
|
|
39784
|
+
},
|
|
39385
39785
|
"invalidType": {
|
|
39386
39786
|
"$ref": "#/definitions/IInvalidType",
|
|
39387
39787
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -39934,6 +40334,16 @@
|
|
|
39934
40334
|
"description": "自适应文字宽度与可用空间的比例",
|
|
39935
40335
|
"type": "number"
|
|
39936
40336
|
},
|
|
40337
|
+
"fitStrategy": {
|
|
40338
|
+
"default": "'local'",
|
|
40339
|
+
"description": "自适应文字策略",
|
|
40340
|
+
"enum": [
|
|
40341
|
+
"default",
|
|
40342
|
+
"inscribed"
|
|
40343
|
+
],
|
|
40344
|
+
"since": "1.9.0",
|
|
40345
|
+
"type": "string"
|
|
40346
|
+
},
|
|
39937
40347
|
"space": {
|
|
39938
40348
|
"description": "title.space: title 和 content 之间的间距\ncontentItem.space: content 之间的间距\n兼容gap",
|
|
39939
40349
|
"type": "number"
|
|
@@ -39982,6 +40392,16 @@
|
|
|
39982
40392
|
"description": "自适应文字宽度与可用空间的比例",
|
|
39983
40393
|
"type": "number"
|
|
39984
40394
|
},
|
|
40395
|
+
"fitStrategy": {
|
|
40396
|
+
"default": "'local'",
|
|
40397
|
+
"description": "自适应文字策略",
|
|
40398
|
+
"enum": [
|
|
40399
|
+
"default",
|
|
40400
|
+
"inscribed"
|
|
40401
|
+
],
|
|
40402
|
+
"since": "1.9.0",
|
|
40403
|
+
"type": "string"
|
|
40404
|
+
},
|
|
39985
40405
|
"space": {
|
|
39986
40406
|
"description": "title.space: title 和 content 之间的间距\ncontentItem.space: content 之间的间距\n兼容gap",
|
|
39987
40407
|
"type": "number"
|
|
@@ -40004,6 +40424,15 @@
|
|
|
40004
40424
|
},
|
|
40005
40425
|
"IIndicatorSpec": {
|
|
40006
40426
|
"properties": {
|
|
40427
|
+
"alignSelf": {
|
|
40428
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
40429
|
+
"enum": [
|
|
40430
|
+
"end",
|
|
40431
|
+
"middle",
|
|
40432
|
+
"start"
|
|
40433
|
+
],
|
|
40434
|
+
"type": "string"
|
|
40435
|
+
},
|
|
40007
40436
|
"bottom": {
|
|
40008
40437
|
"$ref": "#/definitions/ILayoutNumber",
|
|
40009
40438
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -40047,6 +40476,11 @@
|
|
|
40047
40476
|
"id": {
|
|
40048
40477
|
"$ref": "#/definitions/StringOrNumber"
|
|
40049
40478
|
},
|
|
40479
|
+
"indent": {
|
|
40480
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
40481
|
+
"description": "模块的布局锁进",
|
|
40482
|
+
"since": "1.8.6"
|
|
40483
|
+
},
|
|
40050
40484
|
"layoutLevel": {
|
|
40051
40485
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
40052
40486
|
"type": "number"
|
|
@@ -40224,6 +40658,15 @@
|
|
|
40224
40658
|
},
|
|
40225
40659
|
"IIndicatorTheme": {
|
|
40226
40660
|
"properties": {
|
|
40661
|
+
"alignSelf": {
|
|
40662
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
40663
|
+
"enum": [
|
|
40664
|
+
"end",
|
|
40665
|
+
"middle",
|
|
40666
|
+
"start"
|
|
40667
|
+
],
|
|
40668
|
+
"type": "string"
|
|
40669
|
+
},
|
|
40227
40670
|
"bottom": {
|
|
40228
40671
|
"$ref": "#/definitions/ILayoutNumber",
|
|
40229
40672
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -40257,6 +40700,11 @@
|
|
|
40257
40700
|
"id": {
|
|
40258
40701
|
"$ref": "#/definitions/StringOrNumber"
|
|
40259
40702
|
},
|
|
40703
|
+
"indent": {
|
|
40704
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
40705
|
+
"description": "模块的布局锁进",
|
|
40706
|
+
"since": "1.8.6"
|
|
40707
|
+
},
|
|
40260
40708
|
"layoutLevel": {
|
|
40261
40709
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
40262
40710
|
"type": "number"
|
|
@@ -40432,6 +40880,34 @@
|
|
|
40432
40880
|
},
|
|
40433
40881
|
"type": "object"
|
|
40434
40882
|
},
|
|
40883
|
+
"IInteractionItemSpec": {
|
|
40884
|
+
"anyOf": [
|
|
40885
|
+
{
|
|
40886
|
+
"$ref": "#/definitions/IElementActiveSpec"
|
|
40887
|
+
},
|
|
40888
|
+
{
|
|
40889
|
+
"$ref": "#/definitions/IElementSelectSpec"
|
|
40890
|
+
},
|
|
40891
|
+
{
|
|
40892
|
+
"$ref": "#/definitions/IElementHighlightSpec"
|
|
40893
|
+
},
|
|
40894
|
+
{
|
|
40895
|
+
"$ref": "#/definitions/IElementHighlightByKeySpec"
|
|
40896
|
+
},
|
|
40897
|
+
{
|
|
40898
|
+
"$ref": "#/definitions/IElementHighlightByGroup"
|
|
40899
|
+
},
|
|
40900
|
+
{
|
|
40901
|
+
"$ref": "#/definitions/IElementActiveByLegend"
|
|
40902
|
+
},
|
|
40903
|
+
{
|
|
40904
|
+
"$ref": "#/definitions/IElementHighlightByLegend"
|
|
40905
|
+
},
|
|
40906
|
+
{
|
|
40907
|
+
"$ref": "#/definitions/IElementHighlightByName"
|
|
40908
|
+
}
|
|
40909
|
+
]
|
|
40910
|
+
},
|
|
40435
40911
|
"IInvalidType": {
|
|
40436
40912
|
"enum": [
|
|
40437
40913
|
"break",
|
|
@@ -40586,6 +41062,15 @@
|
|
|
40586
41062
|
},
|
|
40587
41063
|
"ILabelSpec": {
|
|
40588
41064
|
"properties": {
|
|
41065
|
+
"alignSelf": {
|
|
41066
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
41067
|
+
"enum": [
|
|
41068
|
+
"end",
|
|
41069
|
+
"middle",
|
|
41070
|
+
"start"
|
|
41071
|
+
],
|
|
41072
|
+
"type": "string"
|
|
41073
|
+
},
|
|
40589
41074
|
"animation": {
|
|
40590
41075
|
"anyOf": [
|
|
40591
41076
|
{
|
|
@@ -40637,6 +41122,11 @@
|
|
|
40637
41122
|
"id": {
|
|
40638
41123
|
"$ref": "#/definitions/StringOrNumber"
|
|
40639
41124
|
},
|
|
41125
|
+
"indent": {
|
|
41126
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
41127
|
+
"description": "模块的布局锁进",
|
|
41128
|
+
"since": "1.8.6"
|
|
41129
|
+
},
|
|
40640
41130
|
"interactive": {
|
|
40641
41131
|
"description": "是否支持交互。@default false",
|
|
40642
41132
|
"type": "boolean"
|
|
@@ -40805,6 +41295,12 @@
|
|
|
40805
41295
|
"description": "是否支持3D",
|
|
40806
41296
|
"type": "boolean"
|
|
40807
41297
|
},
|
|
41298
|
+
"syncState": {
|
|
41299
|
+
"default": false,
|
|
41300
|
+
"description": "是否同步数据图元的状态变化",
|
|
41301
|
+
"since": "1.9.0",
|
|
41302
|
+
"type": "boolean"
|
|
41303
|
+
},
|
|
40808
41304
|
"textType": {
|
|
40809
41305
|
"type": "string"
|
|
40810
41306
|
},
|
|
@@ -41560,6 +42056,15 @@
|
|
|
41560
42056
|
},
|
|
41561
42057
|
"ILayoutItemSpec": {
|
|
41562
42058
|
"properties": {
|
|
42059
|
+
"alignSelf": {
|
|
42060
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
42061
|
+
"enum": [
|
|
42062
|
+
"end",
|
|
42063
|
+
"middle",
|
|
42064
|
+
"start"
|
|
42065
|
+
],
|
|
42066
|
+
"type": "string"
|
|
42067
|
+
},
|
|
41563
42068
|
"bottom": {
|
|
41564
42069
|
"$ref": "#/definitions/ILayoutNumber",
|
|
41565
42070
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -41576,6 +42081,11 @@
|
|
|
41576
42081
|
"$ref": "#/definitions/ILayoutNumber",
|
|
41577
42082
|
"description": "模块的布局大小:高度"
|
|
41578
42083
|
},
|
|
42084
|
+
"indent": {
|
|
42085
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
42086
|
+
"description": "模块的布局锁进",
|
|
42087
|
+
"since": "1.8.6"
|
|
42088
|
+
},
|
|
41579
42089
|
"layoutLevel": {
|
|
41580
42090
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
41581
42091
|
"type": "number"
|
|
@@ -41940,6 +42450,12 @@
|
|
|
41940
42450
|
"$ref": "#/definitions/StringOrNumber",
|
|
41941
42451
|
"description": "用户自定义的 series id"
|
|
41942
42452
|
},
|
|
42453
|
+
"interactions": {
|
|
42454
|
+
"items": {
|
|
42455
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
42456
|
+
},
|
|
42457
|
+
"type": "array"
|
|
42458
|
+
},
|
|
41943
42459
|
"invalidType": {
|
|
41944
42460
|
"$ref": "#/definitions/IInvalidType",
|
|
41945
42461
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -42929,6 +43445,12 @@
|
|
|
42929
43445
|
"$ref": "#/definitions/StringOrNumber",
|
|
42930
43446
|
"description": "用户自定义的 series id"
|
|
42931
43447
|
},
|
|
43448
|
+
"interactions": {
|
|
43449
|
+
"items": {
|
|
43450
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
43451
|
+
},
|
|
43452
|
+
"type": "array"
|
|
43453
|
+
},
|
|
42932
43454
|
"invalidType": {
|
|
42933
43455
|
"$ref": "#/definitions/IInvalidType",
|
|
42934
43456
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -43458,6 +43980,12 @@
|
|
|
43458
43980
|
"$ref": "#/definitions/StringOrNumber",
|
|
43459
43981
|
"description": "用户自定义的 series id"
|
|
43460
43982
|
},
|
|
43983
|
+
"interactions": {
|
|
43984
|
+
"items": {
|
|
43985
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
43986
|
+
},
|
|
43987
|
+
"type": "array"
|
|
43988
|
+
},
|
|
43461
43989
|
"invalidType": {
|
|
43462
43990
|
"$ref": "#/definitions/IInvalidType",
|
|
43463
43991
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -43827,6 +44355,12 @@
|
|
|
43827
44355
|
"$ref": "#/definitions/StringOrNumber",
|
|
43828
44356
|
"description": "用户自定义的 series id"
|
|
43829
44357
|
},
|
|
44358
|
+
"interactions": {
|
|
44359
|
+
"items": {
|
|
44360
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
44361
|
+
},
|
|
44362
|
+
"type": "array"
|
|
44363
|
+
},
|
|
43830
44364
|
"invalidType": {
|
|
43831
44365
|
"$ref": "#/definitions/IInvalidType",
|
|
43832
44366
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -44057,6 +44591,12 @@
|
|
|
44057
44591
|
"$ref": "#/definitions/StringOrNumber",
|
|
44058
44592
|
"description": "用户自定义的 series id"
|
|
44059
44593
|
},
|
|
44594
|
+
"interactions": {
|
|
44595
|
+
"items": {
|
|
44596
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
44597
|
+
},
|
|
44598
|
+
"type": "array"
|
|
44599
|
+
},
|
|
44060
44600
|
"invalidType": {
|
|
44061
44601
|
"$ref": "#/definitions/IInvalidType",
|
|
44062
44602
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -44226,6 +44766,228 @@
|
|
|
44226
44766
|
},
|
|
44227
44767
|
"type": "object"
|
|
44228
44768
|
},
|
|
44769
|
+
"ILiquidMarkSpec": {
|
|
44770
|
+
"properties": {
|
|
44771
|
+
"alpha": {
|
|
44772
|
+
"type": "number"
|
|
44773
|
+
},
|
|
44774
|
+
"anchor": {
|
|
44775
|
+
"items": [
|
|
44776
|
+
{
|
|
44777
|
+
"type": "number"
|
|
44778
|
+
},
|
|
44779
|
+
{
|
|
44780
|
+
"type": "number"
|
|
44781
|
+
}
|
|
44782
|
+
],
|
|
44783
|
+
"maxItems": 2,
|
|
44784
|
+
"minItems": 2,
|
|
44785
|
+
"type": "array"
|
|
44786
|
+
},
|
|
44787
|
+
"anchor3d": {
|
|
44788
|
+
"items": [
|
|
44789
|
+
{
|
|
44790
|
+
"type": "number"
|
|
44791
|
+
},
|
|
44792
|
+
{
|
|
44793
|
+
"type": "number"
|
|
44794
|
+
}
|
|
44795
|
+
],
|
|
44796
|
+
"maxItems": 2,
|
|
44797
|
+
"minItems": 2,
|
|
44798
|
+
"type": "array"
|
|
44799
|
+
},
|
|
44800
|
+
"angle": {
|
|
44801
|
+
"type": "number"
|
|
44802
|
+
},
|
|
44803
|
+
"beta": {
|
|
44804
|
+
"type": "number"
|
|
44805
|
+
},
|
|
44806
|
+
"boundsMode": {
|
|
44807
|
+
"enum": [
|
|
44808
|
+
"accurate",
|
|
44809
|
+
"imprecise"
|
|
44810
|
+
],
|
|
44811
|
+
"type": "string"
|
|
44812
|
+
},
|
|
44813
|
+
"cursor": {
|
|
44814
|
+
"$ref": "#/definitions/Cursor_1"
|
|
44815
|
+
},
|
|
44816
|
+
"innerBorder": {
|
|
44817
|
+
"$ref": "#/definitions/IBorder",
|
|
44818
|
+
"description": "内边框"
|
|
44819
|
+
},
|
|
44820
|
+
"lineDash": {
|
|
44821
|
+
"items": {
|
|
44822
|
+
"type": "number"
|
|
44823
|
+
},
|
|
44824
|
+
"type": "array"
|
|
44825
|
+
},
|
|
44826
|
+
"lineDashOffset": {
|
|
44827
|
+
"type": "number"
|
|
44828
|
+
},
|
|
44829
|
+
"lineWidth": {
|
|
44830
|
+
"type": "number"
|
|
44831
|
+
},
|
|
44832
|
+
"opacity": {
|
|
44833
|
+
"type": "number"
|
|
44834
|
+
},
|
|
44835
|
+
"outerBorder": {
|
|
44836
|
+
"$ref": "#/definitions/IBorder",
|
|
44837
|
+
"description": "外边框"
|
|
44838
|
+
},
|
|
44839
|
+
"pickMode": {
|
|
44840
|
+
"description": "选择模式,精确模式,粗糙模式(包围盒模式),自定义模式",
|
|
44841
|
+
"enum": [
|
|
44842
|
+
"accurate",
|
|
44843
|
+
"custom",
|
|
44844
|
+
"imprecise"
|
|
44845
|
+
],
|
|
44846
|
+
"type": "string"
|
|
44847
|
+
},
|
|
44848
|
+
"pickStrokeBuffer": {
|
|
44849
|
+
"default": 0,
|
|
44850
|
+
"description": "用于扩展描边的拾取范围,为 0 就是默认线宽,正数就加宽,负数就减宽",
|
|
44851
|
+
"since": "1.7.3",
|
|
44852
|
+
"type": "number"
|
|
44853
|
+
},
|
|
44854
|
+
"scaleCenter": {
|
|
44855
|
+
"description": "图形缩放中心",
|
|
44856
|
+
"items": [
|
|
44857
|
+
{
|
|
44858
|
+
"type": [
|
|
44859
|
+
"string",
|
|
44860
|
+
"number"
|
|
44861
|
+
]
|
|
44862
|
+
},
|
|
44863
|
+
{
|
|
44864
|
+
"type": [
|
|
44865
|
+
"string",
|
|
44866
|
+
"number"
|
|
44867
|
+
]
|
|
44868
|
+
}
|
|
44869
|
+
],
|
|
44870
|
+
"maxItems": 2,
|
|
44871
|
+
"minItems": 2,
|
|
44872
|
+
"since": "1.4.0\n可以配置固定坐标,例如 [100, 100];或者百分比坐标,例如 ['50%', '50%'],代表以图元中心为缩放中心",
|
|
44873
|
+
"type": "array"
|
|
44874
|
+
},
|
|
44875
|
+
"scaleX": {
|
|
44876
|
+
"type": "number"
|
|
44877
|
+
},
|
|
44878
|
+
"scaleY": {
|
|
44879
|
+
"type": "number"
|
|
44880
|
+
},
|
|
44881
|
+
"stroke": {
|
|
44882
|
+
"anyOf": [
|
|
44883
|
+
{
|
|
44884
|
+
"$ref": "#/definitions/IColorKey"
|
|
44885
|
+
},
|
|
44886
|
+
{
|
|
44887
|
+
"$ref": "#/definitions/IGradientLinear"
|
|
44888
|
+
},
|
|
44889
|
+
{
|
|
44890
|
+
"$ref": "#/definitions/IGradientRadial"
|
|
44891
|
+
},
|
|
44892
|
+
{
|
|
44893
|
+
"$ref": "#/definitions/IGradientConical"
|
|
44894
|
+
},
|
|
44895
|
+
{
|
|
44896
|
+
"items": {
|
|
44897
|
+
"type": [
|
|
44898
|
+
"number",
|
|
44899
|
+
"boolean"
|
|
44900
|
+
]
|
|
44901
|
+
},
|
|
44902
|
+
"type": "array"
|
|
44903
|
+
},
|
|
44904
|
+
{
|
|
44905
|
+
"const": false,
|
|
44906
|
+
"type": "boolean"
|
|
44907
|
+
},
|
|
44908
|
+
{
|
|
44909
|
+
"type": "string"
|
|
44910
|
+
}
|
|
44911
|
+
]
|
|
44912
|
+
},
|
|
44913
|
+
"strokeOpacity": {
|
|
44914
|
+
"type": "number"
|
|
44915
|
+
},
|
|
44916
|
+
"texture": {
|
|
44917
|
+
"description": "纹理的类型",
|
|
44918
|
+
"type": "string"
|
|
44919
|
+
},
|
|
44920
|
+
"textureColor": {
|
|
44921
|
+
"description": "纹理的颜色",
|
|
44922
|
+
"type": "string"
|
|
44923
|
+
},
|
|
44924
|
+
"texturePadding": {
|
|
44925
|
+
"description": "纹理之间空隙的大小",
|
|
44926
|
+
"type": "number"
|
|
44927
|
+
},
|
|
44928
|
+
"textureSize": {
|
|
44929
|
+
"description": "纹理单元的大小",
|
|
44930
|
+
"type": "number"
|
|
44931
|
+
},
|
|
44932
|
+
"visible": {
|
|
44933
|
+
"type": "boolean"
|
|
44934
|
+
},
|
|
44935
|
+
"wave": {
|
|
44936
|
+
"description": "波浪的变化状态,范围为 [0, 1]",
|
|
44937
|
+
"type": "number"
|
|
44938
|
+
},
|
|
44939
|
+
"x": {
|
|
44940
|
+
"type": "number"
|
|
44941
|
+
},
|
|
44942
|
+
"y": {
|
|
44943
|
+
"type": "number"
|
|
44944
|
+
},
|
|
44945
|
+
"z": {
|
|
44946
|
+
"type": "number"
|
|
44947
|
+
},
|
|
44948
|
+
"zIndex": {
|
|
44949
|
+
"type": "number"
|
|
44950
|
+
}
|
|
44951
|
+
},
|
|
44952
|
+
"type": "object"
|
|
44953
|
+
},
|
|
44954
|
+
"ILiquidPaddingSpec": {
|
|
44955
|
+
"anyOf": [
|
|
44956
|
+
{
|
|
44957
|
+
"items": {
|
|
44958
|
+
"type": "number"
|
|
44959
|
+
},
|
|
44960
|
+
"type": "array"
|
|
44961
|
+
},
|
|
44962
|
+
{
|
|
44963
|
+
"typeof": "function"
|
|
44964
|
+
},
|
|
44965
|
+
{
|
|
44966
|
+
"type": "number"
|
|
44967
|
+
}
|
|
44968
|
+
],
|
|
44969
|
+
"description": "布局 padding的配置"
|
|
44970
|
+
},
|
|
44971
|
+
"ILiquidSeriesTheme": {
|
|
44972
|
+
"properties": {
|
|
44973
|
+
"liquid": {
|
|
44974
|
+
"$ref": "#/definitions/Partial<IMarkTheme<ILiquidMarkSpec>>"
|
|
44975
|
+
},
|
|
44976
|
+
"liquidBackground": {
|
|
44977
|
+
"$ref": "#/definitions/IMarkSpec<IGroupMarkSpec>"
|
|
44978
|
+
},
|
|
44979
|
+
"liquidOutline": {
|
|
44980
|
+
"$ref": "#/definitions/IMarkSpec<ILiquidOutlineSpec>"
|
|
44981
|
+
},
|
|
44982
|
+
"outlineMargin": {
|
|
44983
|
+
"$ref": "#/definitions/ILiquidPaddingSpec"
|
|
44984
|
+
},
|
|
44985
|
+
"outlinePadding": {
|
|
44986
|
+
"$ref": "#/definitions/ILiquidPaddingSpec"
|
|
44987
|
+
}
|
|
44988
|
+
},
|
|
44989
|
+
"type": "object"
|
|
44990
|
+
},
|
|
44229
44991
|
"ILogger": {
|
|
44230
44992
|
"properties": {
|
|
44231
44993
|
"addErrorHandler": {
|
|
@@ -44497,6 +45259,12 @@
|
|
|
44497
45259
|
"$ref": "#/definitions/StringOrNumber",
|
|
44498
45260
|
"description": "用户自定义的 series id"
|
|
44499
45261
|
},
|
|
45262
|
+
"interactions": {
|
|
45263
|
+
"items": {
|
|
45264
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
45265
|
+
},
|
|
45266
|
+
"type": "array"
|
|
45267
|
+
},
|
|
44500
45268
|
"invalidType": {
|
|
44501
45269
|
"$ref": "#/definitions/IInvalidType",
|
|
44502
45270
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -44889,6 +45657,12 @@
|
|
|
44889
45657
|
"$ref": "#/definitions/StringOrNumber",
|
|
44890
45658
|
"description": "用户自定义的 series id"
|
|
44891
45659
|
},
|
|
45660
|
+
"interactions": {
|
|
45661
|
+
"items": {
|
|
45662
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
45663
|
+
},
|
|
45664
|
+
"type": "array"
|
|
45665
|
+
},
|
|
44892
45666
|
"invalidType": {
|
|
44893
45667
|
"$ref": "#/definitions/IInvalidType",
|
|
44894
45668
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -45834,6 +46608,17 @@
|
|
|
45834
46608
|
],
|
|
45835
46609
|
"description": "markSpec"
|
|
45836
46610
|
},
|
|
46611
|
+
"IMarkSpec<IGroupMarkSpec>": {
|
|
46612
|
+
"allOf": [
|
|
46613
|
+
{
|
|
46614
|
+
"typeof": "function"
|
|
46615
|
+
},
|
|
46616
|
+
{
|
|
46617
|
+
"typeof": "function"
|
|
46618
|
+
}
|
|
46619
|
+
],
|
|
46620
|
+
"description": "markSpec"
|
|
46621
|
+
},
|
|
45837
46622
|
"IMarkSpec<ILineMarkSpec>": {
|
|
45838
46623
|
"allOf": [
|
|
45839
46624
|
{
|
|
@@ -45856,6 +46641,17 @@
|
|
|
45856
46641
|
],
|
|
45857
46642
|
"description": "markSpec"
|
|
45858
46643
|
},
|
|
46644
|
+
"IMarkSpec<ILiquidOutlineSpec>": {
|
|
46645
|
+
"allOf": [
|
|
46646
|
+
{
|
|
46647
|
+
"typeof": "function"
|
|
46648
|
+
},
|
|
46649
|
+
{
|
|
46650
|
+
"typeof": "function"
|
|
46651
|
+
}
|
|
46652
|
+
],
|
|
46653
|
+
"description": "markSpec"
|
|
46654
|
+
},
|
|
45859
46655
|
"IMarkSpec<IPathMarkSpec>": {
|
|
45860
46656
|
"allOf": [
|
|
45861
46657
|
{
|
|
@@ -45973,6 +46769,15 @@
|
|
|
45973
46769
|
},
|
|
45974
46770
|
"IMarkerSpec": {
|
|
45975
46771
|
"properties": {
|
|
46772
|
+
"alignSelf": {
|
|
46773
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
46774
|
+
"enum": [
|
|
46775
|
+
"end",
|
|
46776
|
+
"middle",
|
|
46777
|
+
"start"
|
|
46778
|
+
],
|
|
46779
|
+
"type": "string"
|
|
46780
|
+
},
|
|
45976
46781
|
"autoRange": {
|
|
45977
46782
|
"default": false,
|
|
45978
46783
|
"description": "marker组件是否自动拓展轴范围",
|
|
@@ -46000,6 +46805,11 @@
|
|
|
46000
46805
|
"id": {
|
|
46001
46806
|
"$ref": "#/definitions/StringOrNumber"
|
|
46002
46807
|
},
|
|
46808
|
+
"indent": {
|
|
46809
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
46810
|
+
"description": "模块的布局锁进",
|
|
46811
|
+
"since": "1.8.6"
|
|
46812
|
+
},
|
|
46003
46813
|
"interactive": {
|
|
46004
46814
|
"default": false,
|
|
46005
46815
|
"description": "marker组件是否可交互",
|
|
@@ -47410,6 +48220,12 @@
|
|
|
47410
48220
|
"description": "饼图扇区内半径",
|
|
47411
48221
|
"type": "number"
|
|
47412
48222
|
},
|
|
48223
|
+
"interactions": {
|
|
48224
|
+
"items": {
|
|
48225
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
48226
|
+
},
|
|
48227
|
+
"type": "array"
|
|
48228
|
+
},
|
|
47413
48229
|
"invalidType": {
|
|
47414
48230
|
"$ref": "#/definitions/IInvalidType",
|
|
47415
48231
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -47946,6 +48762,12 @@
|
|
|
47946
48762
|
"description": "饼图扇区内半径",
|
|
47947
48763
|
"type": "number"
|
|
47948
48764
|
},
|
|
48765
|
+
"interactions": {
|
|
48766
|
+
"items": {
|
|
48767
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
48768
|
+
},
|
|
48769
|
+
"type": "array"
|
|
48770
|
+
},
|
|
47949
48771
|
"invalidType": {
|
|
47950
48772
|
"$ref": "#/definitions/IInvalidType",
|
|
47951
48773
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -48355,6 +49177,12 @@
|
|
|
48355
49177
|
"description": "饼图扇区内半径",
|
|
48356
49178
|
"type": "number"
|
|
48357
49179
|
},
|
|
49180
|
+
"interactions": {
|
|
49181
|
+
"items": {
|
|
49182
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
49183
|
+
},
|
|
49184
|
+
"type": "array"
|
|
49185
|
+
},
|
|
48358
49186
|
"invalidType": {
|
|
48359
49187
|
"$ref": "#/definitions/IInvalidType",
|
|
48360
49188
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -48536,6 +49364,15 @@
|
|
|
48536
49364
|
},
|
|
48537
49365
|
"IPlayer": {
|
|
48538
49366
|
"properties": {
|
|
49367
|
+
"alignSelf": {
|
|
49368
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
49369
|
+
"enum": [
|
|
49370
|
+
"end",
|
|
49371
|
+
"middle",
|
|
49372
|
+
"start"
|
|
49373
|
+
],
|
|
49374
|
+
"type": "string"
|
|
49375
|
+
},
|
|
48539
49376
|
"alternate": {
|
|
48540
49377
|
"default": false,
|
|
48541
49378
|
"description": "下一次播放时更换方向",
|
|
@@ -48581,6 +49418,11 @@
|
|
|
48581
49418
|
"description": "组件高度",
|
|
48582
49419
|
"type": "number"
|
|
48583
49420
|
},
|
|
49421
|
+
"indent": {
|
|
49422
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
49423
|
+
"description": "模块的布局锁进",
|
|
49424
|
+
"since": "1.8.6"
|
|
49425
|
+
},
|
|
48584
49426
|
"interval": {
|
|
48585
49427
|
"default": 1000,
|
|
48586
49428
|
"description": "该配置与totalDuration互斥, 若配置播放间隔, 则会重新计算总时长.",
|
|
@@ -48761,6 +49603,15 @@
|
|
|
48761
49603
|
},
|
|
48762
49604
|
"IPlayerTheme": {
|
|
48763
49605
|
"properties": {
|
|
49606
|
+
"alignSelf": {
|
|
49607
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
49608
|
+
"enum": [
|
|
49609
|
+
"end",
|
|
49610
|
+
"middle",
|
|
49611
|
+
"start"
|
|
49612
|
+
],
|
|
49613
|
+
"type": "string"
|
|
49614
|
+
},
|
|
48764
49615
|
"bottom": {
|
|
48765
49616
|
"$ref": "#/definitions/ILayoutNumber",
|
|
48766
49617
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -48791,6 +49642,11 @@
|
|
|
48791
49642
|
"description": "组件高度",
|
|
48792
49643
|
"type": "number"
|
|
48793
49644
|
},
|
|
49645
|
+
"indent": {
|
|
49646
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
49647
|
+
"description": "模块的布局锁进",
|
|
49648
|
+
"since": "1.8.6"
|
|
49649
|
+
},
|
|
48794
49650
|
"layoutLevel": {
|
|
48795
49651
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
48796
49652
|
"type": "number"
|
|
@@ -49064,6 +49920,15 @@
|
|
|
49064
49920
|
},
|
|
49065
49921
|
"IPolarCrosshairSpec": {
|
|
49066
49922
|
"properties": {
|
|
49923
|
+
"alignSelf": {
|
|
49924
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
49925
|
+
"enum": [
|
|
49926
|
+
"end",
|
|
49927
|
+
"middle",
|
|
49928
|
+
"start"
|
|
49929
|
+
],
|
|
49930
|
+
"type": "string"
|
|
49931
|
+
},
|
|
49067
49932
|
"bottom": {
|
|
49068
49933
|
"$ref": "#/definitions/ILayoutNumber",
|
|
49069
49934
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -49091,6 +49956,11 @@
|
|
|
49091
49956
|
"id": {
|
|
49092
49957
|
"$ref": "#/definitions/StringOrNumber"
|
|
49093
49958
|
},
|
|
49959
|
+
"indent": {
|
|
49960
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
49961
|
+
"description": "模块的布局锁进",
|
|
49962
|
+
"since": "1.8.6"
|
|
49963
|
+
},
|
|
49094
49964
|
"labelZIndex": {
|
|
49095
49965
|
"description": "crosshair 文本的显示层级",
|
|
49096
49966
|
"type": "number"
|
|
@@ -49107,6 +49977,11 @@
|
|
|
49107
49977
|
"$ref": "#/definitions/ILayoutNumber",
|
|
49108
49978
|
"description": "模块绝对布局下,与图表左侧的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
49109
49979
|
},
|
|
49980
|
+
"lockAfterClick": {
|
|
49981
|
+
"description": "点击后锁定,只有点击才可以更新位置或者解锁",
|
|
49982
|
+
"since": "1.9.0",
|
|
49983
|
+
"type": "boolean"
|
|
49984
|
+
},
|
|
49110
49985
|
"maxHeight": {
|
|
49111
49986
|
"$ref": "#/definitions/ILayoutNumber",
|
|
49112
49987
|
"description": "模块的布局最大高度"
|
|
@@ -49243,6 +50118,9 @@
|
|
|
49243
50118
|
"none"
|
|
49244
50119
|
],
|
|
49245
50120
|
"type": "string"
|
|
50121
|
+
},
|
|
50122
|
+
{
|
|
50123
|
+
"type": "number"
|
|
49246
50124
|
}
|
|
49247
50125
|
],
|
|
49248
50126
|
"description": "隐藏crosshair的触发方式(目前仅支持和trigger一致的设置以及none)"
|
|
@@ -50914,6 +51792,12 @@
|
|
|
50914
51792
|
"description": "扇区内半径",
|
|
50915
51793
|
"type": "number"
|
|
50916
51794
|
},
|
|
51795
|
+
"interactions": {
|
|
51796
|
+
"items": {
|
|
51797
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
51798
|
+
},
|
|
51799
|
+
"type": "array"
|
|
51800
|
+
},
|
|
50917
51801
|
"invalidType": {
|
|
50918
51802
|
"$ref": "#/definitions/IInvalidType",
|
|
50919
51803
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -51377,6 +52261,12 @@
|
|
|
51377
52261
|
"description": "扇区内半径",
|
|
51378
52262
|
"type": "number"
|
|
51379
52263
|
},
|
|
52264
|
+
"interactions": {
|
|
52265
|
+
"items": {
|
|
52266
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
52267
|
+
},
|
|
52268
|
+
"type": "array"
|
|
52269
|
+
},
|
|
51380
52270
|
"invalidType": {
|
|
51381
52271
|
"$ref": "#/definitions/IInvalidType",
|
|
51382
52272
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -51869,6 +52759,12 @@
|
|
|
51869
52759
|
"$ref": "#/definitions/StringOrNumber",
|
|
51870
52760
|
"description": "用户自定义的 series id"
|
|
51871
52761
|
},
|
|
52762
|
+
"interactions": {
|
|
52763
|
+
"items": {
|
|
52764
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
52765
|
+
},
|
|
52766
|
+
"type": "array"
|
|
52767
|
+
},
|
|
51872
52768
|
"invalidType": {
|
|
51873
52769
|
"$ref": "#/definitions/IInvalidType",
|
|
51874
52770
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -52592,6 +53488,12 @@
|
|
|
52592
53488
|
"$ref": "#/definitions/StringOrNumber",
|
|
52593
53489
|
"description": "用户自定义的 series id"
|
|
52594
53490
|
},
|
|
53491
|
+
"interactions": {
|
|
53492
|
+
"items": {
|
|
53493
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
53494
|
+
},
|
|
53495
|
+
"type": "array"
|
|
53496
|
+
},
|
|
52595
53497
|
"invalidType": {
|
|
52596
53498
|
"$ref": "#/definitions/IInvalidType",
|
|
52597
53499
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -52917,7 +53819,17 @@
|
|
|
52917
53819
|
"description": "图元配置"
|
|
52918
53820
|
},
|
|
52919
53821
|
"barBackground": {
|
|
52920
|
-
"
|
|
53822
|
+
"allOf": [
|
|
53823
|
+
{
|
|
53824
|
+
"typeof": "function"
|
|
53825
|
+
},
|
|
53826
|
+
{
|
|
53827
|
+
"typeof": "function"
|
|
53828
|
+
},
|
|
53829
|
+
{
|
|
53830
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
53831
|
+
}
|
|
53832
|
+
],
|
|
52921
53833
|
"description": "柱状背景图元",
|
|
52922
53834
|
"since": "1.6.0"
|
|
52923
53835
|
},
|
|
@@ -53075,6 +53987,12 @@
|
|
|
53075
53987
|
"$ref": "#/definitions/StringOrNumber",
|
|
53076
53988
|
"description": "用户自定义的 series id"
|
|
53077
53989
|
},
|
|
53990
|
+
"interactions": {
|
|
53991
|
+
"items": {
|
|
53992
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
53993
|
+
},
|
|
53994
|
+
"type": "array"
|
|
53995
|
+
},
|
|
53078
53996
|
"invalidType": {
|
|
53079
53997
|
"$ref": "#/definitions/IInvalidType",
|
|
53080
53998
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -53711,7 +54629,17 @@
|
|
|
53711
54629
|
"description": "图元配置"
|
|
53712
54630
|
},
|
|
53713
54631
|
"barBackground": {
|
|
53714
|
-
"
|
|
54632
|
+
"allOf": [
|
|
54633
|
+
{
|
|
54634
|
+
"typeof": "function"
|
|
54635
|
+
},
|
|
54636
|
+
{
|
|
54637
|
+
"typeof": "function"
|
|
54638
|
+
},
|
|
54639
|
+
{
|
|
54640
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
54641
|
+
}
|
|
54642
|
+
],
|
|
53715
54643
|
"description": "柱状背景图元",
|
|
53716
54644
|
"since": "1.6.0"
|
|
53717
54645
|
},
|
|
@@ -53811,6 +54739,12 @@
|
|
|
53811
54739
|
"$ref": "#/definitions/StringOrNumber",
|
|
53812
54740
|
"description": "用户自定义的 series id"
|
|
53813
54741
|
},
|
|
54742
|
+
"interactions": {
|
|
54743
|
+
"items": {
|
|
54744
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
54745
|
+
},
|
|
54746
|
+
"type": "array"
|
|
54747
|
+
},
|
|
53814
54748
|
"invalidType": {
|
|
53815
54749
|
"$ref": "#/definitions/IInvalidType",
|
|
53816
54750
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -54108,7 +55042,17 @@
|
|
|
54108
55042
|
"description": "图元配置"
|
|
54109
55043
|
},
|
|
54110
55044
|
"barBackground": {
|
|
54111
|
-
"
|
|
55045
|
+
"allOf": [
|
|
55046
|
+
{
|
|
55047
|
+
"typeof": "function"
|
|
55048
|
+
},
|
|
55049
|
+
{
|
|
55050
|
+
"typeof": "function"
|
|
55051
|
+
},
|
|
55052
|
+
{
|
|
55053
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
55054
|
+
}
|
|
55055
|
+
],
|
|
54112
55056
|
"description": "柱状背景图元",
|
|
54113
55057
|
"since": "1.6.0"
|
|
54114
55058
|
},
|
|
@@ -54266,6 +55210,12 @@
|
|
|
54266
55210
|
"$ref": "#/definitions/StringOrNumber",
|
|
54267
55211
|
"description": "用户自定义的 series id"
|
|
54268
55212
|
},
|
|
55213
|
+
"interactions": {
|
|
55214
|
+
"items": {
|
|
55215
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
55216
|
+
},
|
|
55217
|
+
"type": "array"
|
|
55218
|
+
},
|
|
54269
55219
|
"invalidType": {
|
|
54270
55220
|
"$ref": "#/definitions/IInvalidType",
|
|
54271
55221
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -54902,7 +55852,17 @@
|
|
|
54902
55852
|
"description": "图元配置"
|
|
54903
55853
|
},
|
|
54904
55854
|
"barBackground": {
|
|
54905
|
-
"
|
|
55855
|
+
"allOf": [
|
|
55856
|
+
{
|
|
55857
|
+
"typeof": "function"
|
|
55858
|
+
},
|
|
55859
|
+
{
|
|
55860
|
+
"typeof": "function"
|
|
55861
|
+
},
|
|
55862
|
+
{
|
|
55863
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
55864
|
+
}
|
|
55865
|
+
],
|
|
54906
55866
|
"description": "柱状背景图元",
|
|
54907
55867
|
"since": "1.6.0"
|
|
54908
55868
|
},
|
|
@@ -55002,6 +55962,12 @@
|
|
|
55002
55962
|
"$ref": "#/definitions/StringOrNumber",
|
|
55003
55963
|
"description": "用户自定义的 series id"
|
|
55004
55964
|
},
|
|
55965
|
+
"interactions": {
|
|
55966
|
+
"items": {
|
|
55967
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
55968
|
+
},
|
|
55969
|
+
"type": "array"
|
|
55970
|
+
},
|
|
55005
55971
|
"invalidType": {
|
|
55006
55972
|
"$ref": "#/definitions/IInvalidType",
|
|
55007
55973
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -55722,6 +56688,15 @@
|
|
|
55722
56688
|
},
|
|
55723
56689
|
"IRegionSpec": {
|
|
55724
56690
|
"properties": {
|
|
56691
|
+
"alignSelf": {
|
|
56692
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
56693
|
+
"enum": [
|
|
56694
|
+
"end",
|
|
56695
|
+
"middle",
|
|
56696
|
+
"start"
|
|
56697
|
+
],
|
|
56698
|
+
"type": "string"
|
|
56699
|
+
},
|
|
55725
56700
|
"bottom": {
|
|
55726
56701
|
"$ref": "#/definitions/ILayoutNumber",
|
|
55727
56702
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -55744,6 +56719,11 @@
|
|
|
55744
56719
|
"id": {
|
|
55745
56720
|
"$ref": "#/definitions/StringOrNumber"
|
|
55746
56721
|
},
|
|
56722
|
+
"indent": {
|
|
56723
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
56724
|
+
"description": "模块的布局锁进",
|
|
56725
|
+
"since": "1.8.6"
|
|
56726
|
+
},
|
|
55747
56727
|
"layoutLevel": {
|
|
55748
56728
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
55749
56729
|
"type": "number"
|
|
@@ -56280,6 +57260,12 @@
|
|
|
56280
57260
|
"description": "扇区内半径",
|
|
56281
57261
|
"type": "number"
|
|
56282
57262
|
},
|
|
57263
|
+
"interactions": {
|
|
57264
|
+
"items": {
|
|
57265
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
57266
|
+
},
|
|
57267
|
+
"type": "array"
|
|
57268
|
+
},
|
|
56283
57269
|
"invalidType": {
|
|
56284
57270
|
"$ref": "#/definitions/IInvalidType",
|
|
56285
57271
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -56687,6 +57673,12 @@
|
|
|
56687
57673
|
"description": "扇区内半径",
|
|
56688
57674
|
"type": "number"
|
|
56689
57675
|
},
|
|
57676
|
+
"interactions": {
|
|
57677
|
+
"items": {
|
|
57678
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
57679
|
+
},
|
|
57680
|
+
"type": "array"
|
|
57681
|
+
},
|
|
56690
57682
|
"invalidType": {
|
|
56691
57683
|
"$ref": "#/definitions/IInvalidType",
|
|
56692
57684
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -57335,6 +58327,12 @@
|
|
|
57335
58327
|
"$ref": "#/definitions/StringOrNumber",
|
|
57336
58328
|
"description": "用户自定义的 series id"
|
|
57337
58329
|
},
|
|
58330
|
+
"interactions": {
|
|
58331
|
+
"items": {
|
|
58332
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
58333
|
+
},
|
|
58334
|
+
"type": "array"
|
|
58335
|
+
},
|
|
57338
58336
|
"invalidType": {
|
|
57339
58337
|
"$ref": "#/definitions/IInvalidType",
|
|
57340
58338
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -57760,6 +58758,12 @@
|
|
|
57760
58758
|
"$ref": "#/definitions/StringOrNumber",
|
|
57761
58759
|
"description": "用户自定义的 series id"
|
|
57762
58760
|
},
|
|
58761
|
+
"interactions": {
|
|
58762
|
+
"items": {
|
|
58763
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
58764
|
+
},
|
|
58765
|
+
"type": "array"
|
|
58766
|
+
},
|
|
57763
58767
|
"invalidType": {
|
|
57764
58768
|
"$ref": "#/definitions/IInvalidType",
|
|
57765
58769
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -58177,6 +59181,12 @@
|
|
|
58177
59181
|
"$ref": "#/definitions/StringOrNumber",
|
|
58178
59182
|
"description": "用户自定义的 series id"
|
|
58179
59183
|
},
|
|
59184
|
+
"interactions": {
|
|
59185
|
+
"items": {
|
|
59186
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
59187
|
+
},
|
|
59188
|
+
"type": "array"
|
|
59189
|
+
},
|
|
58180
59190
|
"invalidType": {
|
|
58181
59191
|
"$ref": "#/definitions/IInvalidType",
|
|
58182
59192
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -58874,6 +59884,12 @@
|
|
|
58874
59884
|
"$ref": "#/definitions/StringOrNumber",
|
|
58875
59885
|
"description": "用户自定义的 series id"
|
|
58876
59886
|
},
|
|
59887
|
+
"interactions": {
|
|
59888
|
+
"items": {
|
|
59889
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
59890
|
+
},
|
|
59891
|
+
"type": "array"
|
|
59892
|
+
},
|
|
58877
59893
|
"invalidType": {
|
|
58878
59894
|
"$ref": "#/definitions/IInvalidType",
|
|
58879
59895
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -59103,6 +60119,15 @@
|
|
|
59103
60119
|
},
|
|
59104
60120
|
"IScrollBarSpec": {
|
|
59105
60121
|
"properties": {
|
|
60122
|
+
"alignSelf": {
|
|
60123
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
60124
|
+
"enum": [
|
|
60125
|
+
"end",
|
|
60126
|
+
"middle",
|
|
60127
|
+
"start"
|
|
60128
|
+
],
|
|
60129
|
+
"type": "string"
|
|
60130
|
+
},
|
|
59106
60131
|
"auto": {
|
|
59107
60132
|
"description": "是否为自动模式。开启以后,组件不会导致轴 scale 缩放,end、roam 等可能导致缩放的配置将被忽略,且组件可以自动消失",
|
|
59108
60133
|
"since": "1.4.0",
|
|
@@ -59179,6 +60204,11 @@
|
|
|
59179
60204
|
"id": {
|
|
59180
60205
|
"$ref": "#/definitions/StringOrNumber"
|
|
59181
60206
|
},
|
|
60207
|
+
"indent": {
|
|
60208
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
60209
|
+
"description": "模块的布局锁进",
|
|
60210
|
+
"since": "1.8.6"
|
|
60211
|
+
},
|
|
59182
60212
|
"innerPadding": {
|
|
59183
60213
|
"anyOf": [
|
|
59184
60214
|
{
|
|
@@ -59948,6 +60978,12 @@
|
|
|
59948
60978
|
"$ref": "#/definitions/StringOrNumber",
|
|
59949
60979
|
"description": "用户自定义的 series id"
|
|
59950
60980
|
},
|
|
60981
|
+
"interactions": {
|
|
60982
|
+
"items": {
|
|
60983
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
60984
|
+
},
|
|
60985
|
+
"type": "array"
|
|
60986
|
+
},
|
|
59951
60987
|
"invalidType": {
|
|
59952
60988
|
"$ref": "#/definitions/IInvalidType",
|
|
59953
60989
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -60127,6 +61163,9 @@
|
|
|
60127
61163
|
"link": {
|
|
60128
61164
|
"$ref": "#/definitions/ILinkSeriesTheme"
|
|
60129
61165
|
},
|
|
61166
|
+
"liquid": {
|
|
61167
|
+
"$ref": "#/definitions/ILiquidSeriesTheme"
|
|
61168
|
+
},
|
|
60130
61169
|
"map": {
|
|
60131
61170
|
"$ref": "#/definitions/IMapSeriesTheme"
|
|
60132
61171
|
},
|
|
@@ -61641,6 +62680,12 @@
|
|
|
61641
62680
|
"default": 0,
|
|
61642
62681
|
"description": "最内层"
|
|
61643
62682
|
},
|
|
62683
|
+
"interactions": {
|
|
62684
|
+
"items": {
|
|
62685
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
62686
|
+
},
|
|
62687
|
+
"type": "array"
|
|
62688
|
+
},
|
|
61644
62689
|
"invalidType": {
|
|
61645
62690
|
"$ref": "#/definitions/IInvalidType",
|
|
61646
62691
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -62064,6 +63109,12 @@
|
|
|
62064
63109
|
"default": 0,
|
|
62065
63110
|
"description": "最内层"
|
|
62066
63111
|
},
|
|
63112
|
+
"interactions": {
|
|
63113
|
+
"items": {
|
|
63114
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
63115
|
+
},
|
|
63116
|
+
"type": "array"
|
|
63117
|
+
},
|
|
62067
63118
|
"invalidType": {
|
|
62068
63119
|
"$ref": "#/definitions/IInvalidType",
|
|
62069
63120
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -63224,6 +64275,15 @@
|
|
|
63224
64275
|
"description": "文字水平对齐方式\n'left' | 'center' | 'right'",
|
|
63225
64276
|
"type": "string"
|
|
63226
64277
|
},
|
|
64278
|
+
"alignSelf": {
|
|
64279
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
64280
|
+
"enum": [
|
|
64281
|
+
"end",
|
|
64282
|
+
"middle",
|
|
64283
|
+
"start"
|
|
64284
|
+
],
|
|
64285
|
+
"type": "string"
|
|
64286
|
+
},
|
|
63227
64287
|
"bottom": {
|
|
63228
64288
|
"$ref": "#/definitions/ILayoutNumber",
|
|
63229
64289
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -63243,6 +64303,11 @@
|
|
|
63243
64303
|
"id": {
|
|
63244
64304
|
"$ref": "#/definitions/StringOrNumber"
|
|
63245
64305
|
},
|
|
64306
|
+
"indent": {
|
|
64307
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
64308
|
+
"description": "模块的布局锁进",
|
|
64309
|
+
"since": "1.8.6"
|
|
64310
|
+
},
|
|
63246
64311
|
"innerPadding": {
|
|
63247
64312
|
"anyOf": [
|
|
63248
64313
|
{
|
|
@@ -63545,6 +64610,15 @@
|
|
|
63545
64610
|
},
|
|
63546
64611
|
"ITitleTheme": {
|
|
63547
64612
|
"properties": {
|
|
64613
|
+
"alignSelf": {
|
|
64614
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
64615
|
+
"enum": [
|
|
64616
|
+
"end",
|
|
64617
|
+
"middle",
|
|
64618
|
+
"start"
|
|
64619
|
+
],
|
|
64620
|
+
"type": "string"
|
|
64621
|
+
},
|
|
63548
64622
|
"bottom": {
|
|
63549
64623
|
"$ref": "#/definitions/ILayoutNumber",
|
|
63550
64624
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -63561,6 +64635,11 @@
|
|
|
63561
64635
|
"$ref": "#/definitions/ILayoutNumber",
|
|
63562
64636
|
"description": "模块的布局大小:高度"
|
|
63563
64637
|
},
|
|
64638
|
+
"indent": {
|
|
64639
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
64640
|
+
"description": "模块的布局锁进",
|
|
64641
|
+
"since": "1.8.6"
|
|
64642
|
+
},
|
|
63564
64643
|
"layoutLevel": {
|
|
63565
64644
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
63566
64645
|
"type": "number"
|
|
@@ -63663,6 +64742,18 @@
|
|
|
63663
64742
|
"$ref": "#/definitions/TooltipContentProperty<ITooltipTextTheme<string>>",
|
|
63664
64743
|
"description": "key 样式(只在 content 上需要配置)"
|
|
63665
64744
|
},
|
|
64745
|
+
"keyTimeFormat": {
|
|
64746
|
+
"description": "如果配置了该值,则 key 字段的最终值会自动格式化为时间字符串",
|
|
64747
|
+
"since": "1.9.0",
|
|
64748
|
+
"type": "string"
|
|
64749
|
+
},
|
|
64750
|
+
"keyTimeFormatMode": {
|
|
64751
|
+
"enum": [
|
|
64752
|
+
"local",
|
|
64753
|
+
"utc"
|
|
64754
|
+
],
|
|
64755
|
+
"type": "string"
|
|
64756
|
+
},
|
|
63666
64757
|
"seriesId": {
|
|
63667
64758
|
"description": "该 pattern 属于哪个系列id(用户不需要设置)",
|
|
63668
64759
|
"type": "number"
|
|
@@ -63707,6 +64798,18 @@
|
|
|
63707
64798
|
"$ref": "#/definitions/TooltipContentProperty<ITooltipTextTheme<string>>",
|
|
63708
64799
|
"description": "value 样式"
|
|
63709
64800
|
},
|
|
64801
|
+
"valueTimeFormat": {
|
|
64802
|
+
"description": "如果配置了该值,则 value 字段的最终值会自动格式化为时间字符串",
|
|
64803
|
+
"since": "1.9.0",
|
|
64804
|
+
"type": "string"
|
|
64805
|
+
},
|
|
64806
|
+
"valueTimeFormatMode": {
|
|
64807
|
+
"enum": [
|
|
64808
|
+
"local",
|
|
64809
|
+
"utc"
|
|
64810
|
+
],
|
|
64811
|
+
"type": "string"
|
|
64812
|
+
},
|
|
63710
64813
|
"visible": {
|
|
63711
64814
|
"$ref": "#/definitions/TooltipContentProperty<boolean>",
|
|
63712
64815
|
"description": "该行是否可见"
|
|
@@ -64438,6 +65541,12 @@
|
|
|
64438
65541
|
"$ref": "#/definitions/StringOrNumber",
|
|
64439
65542
|
"description": "用户自定义的 series id"
|
|
64440
65543
|
},
|
|
65544
|
+
"interactions": {
|
|
65545
|
+
"items": {
|
|
65546
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
65547
|
+
},
|
|
65548
|
+
"type": "array"
|
|
65549
|
+
},
|
|
64441
65550
|
"invalidType": {
|
|
64442
65551
|
"$ref": "#/definitions/IInvalidType",
|
|
64443
65552
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -64901,6 +66010,12 @@
|
|
|
64901
66010
|
"$ref": "#/definitions/StringOrNumber",
|
|
64902
66011
|
"description": "用户自定义的 series id"
|
|
64903
66012
|
},
|
|
66013
|
+
"interactions": {
|
|
66014
|
+
"items": {
|
|
66015
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
66016
|
+
},
|
|
66017
|
+
"type": "array"
|
|
66018
|
+
},
|
|
64904
66019
|
"invalidType": {
|
|
64905
66020
|
"$ref": "#/definitions/IInvalidType",
|
|
64906
66021
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -66787,7 +67902,17 @@
|
|
|
66787
67902
|
"description": "图元配置"
|
|
66788
67903
|
},
|
|
66789
67904
|
"barBackground": {
|
|
66790
|
-
"
|
|
67905
|
+
"allOf": [
|
|
67906
|
+
{
|
|
67907
|
+
"typeof": "function"
|
|
67908
|
+
},
|
|
67909
|
+
{
|
|
67910
|
+
"typeof": "function"
|
|
67911
|
+
},
|
|
67912
|
+
{
|
|
67913
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
67914
|
+
}
|
|
67915
|
+
],
|
|
66791
67916
|
"description": "柱状背景图元",
|
|
66792
67917
|
"since": "1.6.0"
|
|
66793
67918
|
},
|
|
@@ -66945,6 +68070,12 @@
|
|
|
66945
68070
|
"$ref": "#/definitions/StringOrNumber",
|
|
66946
68071
|
"description": "用户自定义的 series id"
|
|
66947
68072
|
},
|
|
68073
|
+
"interactions": {
|
|
68074
|
+
"items": {
|
|
68075
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
68076
|
+
},
|
|
68077
|
+
"type": "array"
|
|
68078
|
+
},
|
|
66948
68079
|
"invalidType": {
|
|
66949
68080
|
"$ref": "#/definitions/IInvalidType",
|
|
66950
68081
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -67601,7 +68732,17 @@
|
|
|
67601
68732
|
"description": "图元配置"
|
|
67602
68733
|
},
|
|
67603
68734
|
"barBackground": {
|
|
67604
|
-
"
|
|
68735
|
+
"allOf": [
|
|
68736
|
+
{
|
|
68737
|
+
"typeof": "function"
|
|
68738
|
+
},
|
|
68739
|
+
{
|
|
68740
|
+
"typeof": "function"
|
|
68741
|
+
},
|
|
68742
|
+
{
|
|
68743
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
68744
|
+
}
|
|
68745
|
+
],
|
|
67605
68746
|
"description": "柱状背景图元",
|
|
67606
68747
|
"since": "1.6.0"
|
|
67607
68748
|
},
|
|
@@ -67701,6 +68842,12 @@
|
|
|
67701
68842
|
"$ref": "#/definitions/StringOrNumber",
|
|
67702
68843
|
"description": "用户自定义的 series id"
|
|
67703
68844
|
},
|
|
68845
|
+
"interactions": {
|
|
68846
|
+
"items": {
|
|
68847
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
68848
|
+
},
|
|
68849
|
+
"type": "array"
|
|
68850
|
+
},
|
|
67704
68851
|
"invalidType": {
|
|
67705
68852
|
"$ref": "#/definitions/IInvalidType",
|
|
67706
68853
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -67914,7 +69061,14 @@
|
|
|
67914
69061
|
"$ref": "#/definitions/Partial<IMarkTheme<IRectMarkSpec>>"
|
|
67915
69062
|
},
|
|
67916
69063
|
"barBackground": {
|
|
67917
|
-
"
|
|
69064
|
+
"allOf": [
|
|
69065
|
+
{
|
|
69066
|
+
"$ref": "#/definitions/Partial<IMarkTheme<IRectMarkSpec>>"
|
|
69067
|
+
},
|
|
69068
|
+
{
|
|
69069
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
69070
|
+
}
|
|
69071
|
+
],
|
|
67918
69072
|
"description": "柱状背景图元",
|
|
67919
69073
|
"since": "1.6.0"
|
|
67920
69074
|
},
|
|
@@ -68486,6 +69640,12 @@
|
|
|
68486
69640
|
"$ref": "#/definitions/StringOrNumber",
|
|
68487
69641
|
"description": "用户自定义的 series id"
|
|
68488
69642
|
},
|
|
69643
|
+
"interactions": {
|
|
69644
|
+
"items": {
|
|
69645
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
69646
|
+
},
|
|
69647
|
+
"type": "array"
|
|
69648
|
+
},
|
|
68489
69649
|
"invalidType": {
|
|
68490
69650
|
"$ref": "#/definitions/IInvalidType",
|
|
68491
69651
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -68942,6 +70102,12 @@
|
|
|
68942
70102
|
"$ref": "#/definitions/StringOrNumber",
|
|
68943
70103
|
"description": "用户自定义的 series id"
|
|
68944
70104
|
},
|
|
70105
|
+
"interactions": {
|
|
70106
|
+
"items": {
|
|
70107
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
70108
|
+
},
|
|
70109
|
+
"type": "array"
|
|
70110
|
+
},
|
|
68945
70111
|
"invalidType": {
|
|
68946
70112
|
"$ref": "#/definitions/IInvalidType",
|
|
68947
70113
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -69409,6 +70575,12 @@
|
|
|
69409
70575
|
"$ref": "#/definitions/StringOrNumber",
|
|
69410
70576
|
"description": "用户自定义的 series id"
|
|
69411
70577
|
},
|
|
70578
|
+
"interactions": {
|
|
70579
|
+
"items": {
|
|
70580
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
70581
|
+
},
|
|
70582
|
+
"type": "array"
|
|
70583
|
+
},
|
|
69412
70584
|
"invalidType": {
|
|
69413
70585
|
"$ref": "#/definitions/IInvalidType",
|
|
69414
70586
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -69858,6 +71030,12 @@
|
|
|
69858
71030
|
"$ref": "#/definitions/StringOrNumber",
|
|
69859
71031
|
"description": "用户自定义的 series id"
|
|
69860
71032
|
},
|
|
71033
|
+
"interactions": {
|
|
71034
|
+
"items": {
|
|
71035
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
71036
|
+
},
|
|
71037
|
+
"type": "array"
|
|
71038
|
+
},
|
|
69861
71039
|
"invalidType": {
|
|
69862
71040
|
"$ref": "#/definitions/IInvalidType",
|
|
69863
71041
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -70178,7 +71356,7 @@
|
|
|
70178
71356
|
},
|
|
70179
71357
|
"Map<Function,(...args:any[])=>void>": {
|
|
70180
71358
|
"properties": {
|
|
70181
|
-
"__@toStringTag@
|
|
71359
|
+
"__@toStringTag@12732": {
|
|
70182
71360
|
"type": "string"
|
|
70183
71361
|
},
|
|
70184
71362
|
"size": {
|
|
@@ -70186,14 +71364,14 @@
|
|
|
70186
71364
|
}
|
|
70187
71365
|
},
|
|
70188
71366
|
"required": [
|
|
70189
|
-
"__@toStringTag@
|
|
71367
|
+
"__@toStringTag@12732",
|
|
70190
71368
|
"size"
|
|
70191
71369
|
],
|
|
70192
71370
|
"type": "object"
|
|
70193
71371
|
},
|
|
70194
71372
|
"Map<number,IGraphicPicker>": {
|
|
70195
71373
|
"properties": {
|
|
70196
|
-
"__@toStringTag@
|
|
71374
|
+
"__@toStringTag@12732": {
|
|
70197
71375
|
"type": "string"
|
|
70198
71376
|
},
|
|
70199
71377
|
"size": {
|
|
@@ -70201,14 +71379,14 @@
|
|
|
70201
71379
|
}
|
|
70202
71380
|
},
|
|
70203
71381
|
"required": [
|
|
70204
|
-
"__@toStringTag@
|
|
71382
|
+
"__@toStringTag@12732",
|
|
70205
71383
|
"size"
|
|
70206
71384
|
],
|
|
70207
71385
|
"type": "object"
|
|
70208
71386
|
},
|
|
70209
71387
|
"Map<number,IGraphicRender>": {
|
|
70210
71388
|
"properties": {
|
|
70211
|
-
"__@toStringTag@
|
|
71389
|
+
"__@toStringTag@12732": {
|
|
70212
71390
|
"type": "string"
|
|
70213
71391
|
},
|
|
70214
71392
|
"size": {
|
|
@@ -70216,14 +71394,14 @@
|
|
|
70216
71394
|
}
|
|
70217
71395
|
},
|
|
70218
71396
|
"required": [
|
|
70219
|
-
"__@toStringTag@
|
|
71397
|
+
"__@toStringTag@12732",
|
|
70220
71398
|
"size"
|
|
70221
71399
|
],
|
|
70222
71400
|
"type": "object"
|
|
70223
71401
|
},
|
|
70224
71402
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
70225
71403
|
"properties": {
|
|
70226
|
-
"__@toStringTag@
|
|
71404
|
+
"__@toStringTag@12732": {
|
|
70227
71405
|
"type": "string"
|
|
70228
71406
|
},
|
|
70229
71407
|
"size": {
|
|
@@ -70231,14 +71409,14 @@
|
|
|
70231
71409
|
}
|
|
70232
71410
|
},
|
|
70233
71411
|
"required": [
|
|
70234
|
-
"__@toStringTag@
|
|
71412
|
+
"__@toStringTag@12732",
|
|
70235
71413
|
"size"
|
|
70236
71414
|
],
|
|
70237
71415
|
"type": "object"
|
|
70238
71416
|
},
|
|
70239
71417
|
"Map<string,Map<number,IGraphicRender>>": {
|
|
70240
71418
|
"properties": {
|
|
70241
|
-
"__@toStringTag@
|
|
71419
|
+
"__@toStringTag@12732": {
|
|
70242
71420
|
"type": "string"
|
|
70243
71421
|
},
|
|
70244
71422
|
"size": {
|
|
@@ -70246,14 +71424,14 @@
|
|
|
70246
71424
|
}
|
|
70247
71425
|
},
|
|
70248
71426
|
"required": [
|
|
70249
|
-
"__@toStringTag@
|
|
71427
|
+
"__@toStringTag@12732",
|
|
70250
71428
|
"size"
|
|
70251
71429
|
],
|
|
70252
71430
|
"type": "object"
|
|
70253
71431
|
},
|
|
70254
71432
|
"Map<string,any>": {
|
|
70255
71433
|
"properties": {
|
|
70256
|
-
"__@toStringTag@
|
|
71434
|
+
"__@toStringTag@12732": {
|
|
70257
71435
|
"type": "string"
|
|
70258
71436
|
},
|
|
70259
71437
|
"size": {
|
|
@@ -70261,14 +71439,14 @@
|
|
|
70261
71439
|
}
|
|
70262
71440
|
},
|
|
70263
71441
|
"required": [
|
|
70264
|
-
"__@toStringTag@
|
|
71442
|
+
"__@toStringTag@12732",
|
|
70265
71443
|
"size"
|
|
70266
71444
|
],
|
|
70267
71445
|
"type": "object"
|
|
70268
71446
|
},
|
|
70269
71447
|
"Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
70270
71448
|
"properties": {
|
|
70271
|
-
"__@toStringTag@
|
|
71449
|
+
"__@toStringTag@12732": {
|
|
70272
71450
|
"type": "string"
|
|
70273
71451
|
},
|
|
70274
71452
|
"size": {
|
|
@@ -70276,14 +71454,14 @@
|
|
|
70276
71454
|
}
|
|
70277
71455
|
},
|
|
70278
71456
|
"required": [
|
|
70279
|
-
"__@toStringTag@
|
|
71457
|
+
"__@toStringTag@12732",
|
|
70280
71458
|
"size"
|
|
70281
71459
|
],
|
|
70282
71460
|
"type": "object"
|
|
70283
71461
|
},
|
|
70284
71462
|
"Map<string|HTMLElement,{container:string|HTMLElement;dom:HTMLElement;wrapGroup:HTMLDivElement;}>": {
|
|
70285
71463
|
"properties": {
|
|
70286
|
-
"__@toStringTag@
|
|
71464
|
+
"__@toStringTag@12732": {
|
|
70287
71465
|
"type": "string"
|
|
70288
71466
|
},
|
|
70289
71467
|
"size": {
|
|
@@ -70291,14 +71469,14 @@
|
|
|
70291
71469
|
}
|
|
70292
71470
|
},
|
|
70293
71471
|
"required": [
|
|
70294
|
-
"__@toStringTag@
|
|
71472
|
+
"__@toStringTag@12732",
|
|
70295
71473
|
"size"
|
|
70296
71474
|
],
|
|
70297
71475
|
"type": "object"
|
|
70298
71476
|
},
|
|
70299
71477
|
"Map<string|number,IAnimate>": {
|
|
70300
71478
|
"properties": {
|
|
70301
|
-
"__@toStringTag@
|
|
71479
|
+
"__@toStringTag@12732": {
|
|
70302
71480
|
"type": "string"
|
|
70303
71481
|
},
|
|
70304
71482
|
"size": {
|
|
@@ -70306,7 +71484,7 @@
|
|
|
70306
71484
|
}
|
|
70307
71485
|
},
|
|
70308
71486
|
"required": [
|
|
70309
|
-
"__@toStringTag@
|
|
71487
|
+
"__@toStringTag@12732",
|
|
70310
71488
|
"size"
|
|
70311
71489
|
],
|
|
70312
71490
|
"type": "object"
|
|
@@ -70472,6 +71650,7 @@
|
|
|
70472
71650
|
"line",
|
|
70473
71651
|
"linearProgress",
|
|
70474
71652
|
"link",
|
|
71653
|
+
"liquid",
|
|
70475
71654
|
"map",
|
|
70476
71655
|
"mapLabel",
|
|
70477
71656
|
"markArea",
|
|
@@ -71324,7 +72503,17 @@
|
|
|
71324
72503
|
"description": "图元配置"
|
|
71325
72504
|
},
|
|
71326
72505
|
"barBackground": {
|
|
71327
|
-
"
|
|
72506
|
+
"allOf": [
|
|
72507
|
+
{
|
|
72508
|
+
"typeof": "function"
|
|
72509
|
+
},
|
|
72510
|
+
{
|
|
72511
|
+
"typeof": "function"
|
|
72512
|
+
},
|
|
72513
|
+
{
|
|
72514
|
+
"$ref": "#/definitions/IBarBackgroundSpec"
|
|
72515
|
+
}
|
|
72516
|
+
],
|
|
71328
72517
|
"description": "柱状背景图元",
|
|
71329
72518
|
"since": "1.6.0"
|
|
71330
72519
|
},
|
|
@@ -71424,6 +72613,12 @@
|
|
|
71424
72613
|
"$ref": "#/definitions/StringOrNumber",
|
|
71425
72614
|
"description": "用户自定义的 series id"
|
|
71426
72615
|
},
|
|
72616
|
+
"interactions": {
|
|
72617
|
+
"items": {
|
|
72618
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
72619
|
+
},
|
|
72620
|
+
"type": "array"
|
|
72621
|
+
},
|
|
71427
72622
|
"invalidType": {
|
|
71428
72623
|
"$ref": "#/definitions/IInvalidType",
|
|
71429
72624
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -71596,6 +72791,15 @@
|
|
|
71596
72791
|
},
|
|
71597
72792
|
"Omit<ICartesianAxisCommonSpec,\"inverse\">": {
|
|
71598
72793
|
"properties": {
|
|
72794
|
+
"alignSelf": {
|
|
72795
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
72796
|
+
"enum": [
|
|
72797
|
+
"end",
|
|
72798
|
+
"middle",
|
|
72799
|
+
"start"
|
|
72800
|
+
],
|
|
72801
|
+
"type": "string"
|
|
72802
|
+
},
|
|
71599
72803
|
"animation": {
|
|
71600
72804
|
"default": false,
|
|
71601
72805
|
"description": "是否开启动画,默认关闭",
|
|
@@ -71702,6 +72906,11 @@
|
|
|
71702
72906
|
"$ref": "#/definitions/IGrid",
|
|
71703
72907
|
"description": "网格线配置"
|
|
71704
72908
|
},
|
|
72909
|
+
"hasDimensionTooltip": {
|
|
72910
|
+
"description": "是否在此轴上指定显示 dimension tooltip\n(离散轴默认不需要配置)",
|
|
72911
|
+
"since": "1.9.0",
|
|
72912
|
+
"type": "boolean"
|
|
72913
|
+
},
|
|
71705
72914
|
"height": {
|
|
71706
72915
|
"$ref": "#/definitions/ILayoutNumber",
|
|
71707
72916
|
"description": "模块的布局大小:高度"
|
|
@@ -71714,6 +72923,11 @@
|
|
|
71714
72923
|
"id": {
|
|
71715
72924
|
"$ref": "#/definitions/StringOrNumber"
|
|
71716
72925
|
},
|
|
72926
|
+
"indent": {
|
|
72927
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
72928
|
+
"description": "模块的布局锁进",
|
|
72929
|
+
"since": "1.8.6"
|
|
72930
|
+
},
|
|
71717
72931
|
"label": {
|
|
71718
72932
|
"$ref": "#/definitions/ICartesianLabel",
|
|
71719
72933
|
"description": "轴标签配置"
|
|
@@ -71767,14 +72981,8 @@
|
|
|
71767
72981
|
"description": "模块的布局位置偏移:Y"
|
|
71768
72982
|
},
|
|
71769
72983
|
"orient": {
|
|
71770
|
-
"
|
|
71771
|
-
|
|
71772
|
-
"left",
|
|
71773
|
-
"right",
|
|
71774
|
-
"top",
|
|
71775
|
-
"z"
|
|
71776
|
-
],
|
|
71777
|
-
"type": "string"
|
|
72984
|
+
"$ref": "#/definitions/IOrientType",
|
|
72985
|
+
"description": "轴位置"
|
|
71778
72986
|
},
|
|
71779
72987
|
"padding": {
|
|
71780
72988
|
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
@@ -72078,6 +73286,12 @@
|
|
|
72078
73286
|
"description": "扇区内半径",
|
|
72079
73287
|
"type": "number"
|
|
72080
73288
|
},
|
|
73289
|
+
"interactions": {
|
|
73290
|
+
"items": {
|
|
73291
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
73292
|
+
},
|
|
73293
|
+
"type": "array"
|
|
73294
|
+
},
|
|
72081
73295
|
"invalidType": {
|
|
72082
73296
|
"$ref": "#/definitions/IInvalidType",
|
|
72083
73297
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -72246,6 +73460,15 @@
|
|
|
72246
73460
|
},
|
|
72247
73461
|
"Omit<ICommonAxisSpec,\"center\">": {
|
|
72248
73462
|
"properties": {
|
|
73463
|
+
"alignSelf": {
|
|
73464
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
73465
|
+
"enum": [
|
|
73466
|
+
"end",
|
|
73467
|
+
"middle",
|
|
73468
|
+
"start"
|
|
73469
|
+
],
|
|
73470
|
+
"type": "string"
|
|
73471
|
+
},
|
|
72249
73472
|
"animation": {
|
|
72250
73473
|
"default": false,
|
|
72251
73474
|
"description": "是否开启动画,默认关闭",
|
|
@@ -72345,6 +73568,11 @@
|
|
|
72345
73568
|
"id": {
|
|
72346
73569
|
"$ref": "#/definitions/StringOrNumber"
|
|
72347
73570
|
},
|
|
73571
|
+
"indent": {
|
|
73572
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
73573
|
+
"description": "模块的布局锁进",
|
|
73574
|
+
"since": "1.8.6"
|
|
73575
|
+
},
|
|
72348
73576
|
"inverse": {
|
|
72349
73577
|
"default": false,
|
|
72350
73578
|
"description": "是否开启反向坐标轴。",
|
|
@@ -72506,6 +73734,15 @@
|
|
|
72506
73734
|
},
|
|
72507
73735
|
"Omit<IComponentSpec,\"orient\">": {
|
|
72508
73736
|
"properties": {
|
|
73737
|
+
"alignSelf": {
|
|
73738
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
73739
|
+
"enum": [
|
|
73740
|
+
"end",
|
|
73741
|
+
"middle",
|
|
73742
|
+
"start"
|
|
73743
|
+
],
|
|
73744
|
+
"type": "string"
|
|
73745
|
+
},
|
|
72509
73746
|
"bottom": {
|
|
72510
73747
|
"$ref": "#/definitions/ILayoutNumber",
|
|
72511
73748
|
"description": "模块绝对布局下,与图表底部的距离。注意仅在 layoutType === 'absolute' 时生效"
|
|
@@ -72525,6 +73762,11 @@
|
|
|
72525
73762
|
"id": {
|
|
72526
73763
|
"$ref": "#/definitions/StringOrNumber"
|
|
72527
73764
|
},
|
|
73765
|
+
"indent": {
|
|
73766
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
73767
|
+
"description": "模块的布局锁进",
|
|
73768
|
+
"since": "1.8.6"
|
|
73769
|
+
},
|
|
72528
73770
|
"layoutLevel": {
|
|
72529
73771
|
"description": "布局顺序等级,等级越大的,越优先布局\n比如顶部同时有标题和图例的场景,期望标题先放在顶部,然后放置图例。",
|
|
72530
73772
|
"type": "number"
|
|
@@ -72824,6 +74066,12 @@
|
|
|
72824
74066
|
"$ref": "#/definitions/StringOrNumber",
|
|
72825
74067
|
"description": "用户自定义的 series id"
|
|
72826
74068
|
},
|
|
74069
|
+
"interactions": {
|
|
74070
|
+
"items": {
|
|
74071
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
74072
|
+
},
|
|
74073
|
+
"type": "array"
|
|
74074
|
+
},
|
|
72827
74075
|
"invalidType": {
|
|
72828
74076
|
"$ref": "#/definitions/IInvalidType",
|
|
72829
74077
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -73149,6 +74397,12 @@
|
|
|
73149
74397
|
"description": "扇区内半径",
|
|
73150
74398
|
"type": "number"
|
|
73151
74399
|
},
|
|
74400
|
+
"interactions": {
|
|
74401
|
+
"items": {
|
|
74402
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
74403
|
+
},
|
|
74404
|
+
"type": "array"
|
|
74405
|
+
},
|
|
73152
74406
|
"invalidType": {
|
|
73153
74407
|
"$ref": "#/definitions/IInvalidType",
|
|
73154
74408
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -73773,6 +75027,15 @@
|
|
|
73773
75027
|
},
|
|
73774
75028
|
"Omit<ILabelSpec,\"position\">": {
|
|
73775
75029
|
"properties": {
|
|
75030
|
+
"alignSelf": {
|
|
75031
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
75032
|
+
"enum": [
|
|
75033
|
+
"end",
|
|
75034
|
+
"middle",
|
|
75035
|
+
"start"
|
|
75036
|
+
],
|
|
75037
|
+
"type": "string"
|
|
75038
|
+
},
|
|
73776
75039
|
"animation": {
|
|
73777
75040
|
"anyOf": [
|
|
73778
75041
|
{
|
|
@@ -73824,6 +75087,11 @@
|
|
|
73824
75087
|
"id": {
|
|
73825
75088
|
"$ref": "#/definitions/StringOrNumber"
|
|
73826
75089
|
},
|
|
75090
|
+
"indent": {
|
|
75091
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
75092
|
+
"description": "模块的布局锁进",
|
|
75093
|
+
"since": "1.8.6"
|
|
75094
|
+
},
|
|
73827
75095
|
"interactive": {
|
|
73828
75096
|
"description": "是否支持交互。@default false",
|
|
73829
75097
|
"type": "boolean"
|
|
@@ -73988,6 +75256,12 @@
|
|
|
73988
75256
|
"description": "是否支持3D",
|
|
73989
75257
|
"type": "boolean"
|
|
73990
75258
|
},
|
|
75259
|
+
"syncState": {
|
|
75260
|
+
"default": false,
|
|
75261
|
+
"description": "是否同步数据图元的状态变化",
|
|
75262
|
+
"since": "1.9.0",
|
|
75263
|
+
"type": "boolean"
|
|
75264
|
+
},
|
|
73991
75265
|
"textType": {
|
|
73992
75266
|
"type": "string"
|
|
73993
75267
|
},
|
|
@@ -74050,6 +75324,9 @@
|
|
|
74050
75324
|
"description": "开启分片渲染的阀值,对应的是单系列data的长度",
|
|
74051
75325
|
"type": "number"
|
|
74052
75326
|
},
|
|
75327
|
+
"stateSort": {
|
|
75328
|
+
"typeof": "function"
|
|
75329
|
+
},
|
|
74053
75330
|
"style": {
|
|
74054
75331
|
"$ref": "#/definitions/ConvertToMarkStyleSpec<IArcMarkSpec>_2",
|
|
74055
75332
|
"description": "默认样式设置"
|
|
@@ -74259,6 +75536,12 @@
|
|
|
74259
75536
|
"description": "饼图扇区内半径",
|
|
74260
75537
|
"type": "number"
|
|
74261
75538
|
},
|
|
75539
|
+
"interactions": {
|
|
75540
|
+
"items": {
|
|
75541
|
+
"$ref": "#/definitions/IInteractionItemSpec"
|
|
75542
|
+
},
|
|
75543
|
+
"type": "array"
|
|
75544
|
+
},
|
|
74262
75545
|
"invalidType": {
|
|
74263
75546
|
"$ref": "#/definitions/IInvalidType",
|
|
74264
75547
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
@@ -78918,6 +80201,15 @@
|
|
|
78918
80201
|
},
|
|
78919
80202
|
"Partial<ILabelSpec>": {
|
|
78920
80203
|
"properties": {
|
|
80204
|
+
"alignSelf": {
|
|
80205
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
80206
|
+
"enum": [
|
|
80207
|
+
"end",
|
|
80208
|
+
"middle",
|
|
80209
|
+
"start"
|
|
80210
|
+
],
|
|
80211
|
+
"type": "string"
|
|
80212
|
+
},
|
|
78921
80213
|
"animation": {
|
|
78922
80214
|
"anyOf": [
|
|
78923
80215
|
{
|
|
@@ -78969,6 +80261,11 @@
|
|
|
78969
80261
|
"id": {
|
|
78970
80262
|
"$ref": "#/definitions/StringOrNumber"
|
|
78971
80263
|
},
|
|
80264
|
+
"indent": {
|
|
80265
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
80266
|
+
"description": "模块的布局锁进",
|
|
80267
|
+
"since": "1.8.6"
|
|
80268
|
+
},
|
|
78972
80269
|
"interactive": {
|
|
78973
80270
|
"description": "是否支持交互。@default false",
|
|
78974
80271
|
"type": "boolean"
|
|
@@ -79137,6 +80434,12 @@
|
|
|
79137
80434
|
"description": "是否支持3D",
|
|
79138
80435
|
"type": "boolean"
|
|
79139
80436
|
},
|
|
80437
|
+
"syncState": {
|
|
80438
|
+
"default": false,
|
|
80439
|
+
"description": "是否同步数据图元的状态变化",
|
|
80440
|
+
"since": "1.9.0",
|
|
80441
|
+
"type": "boolean"
|
|
80442
|
+
},
|
|
79140
80443
|
"textType": {
|
|
79141
80444
|
"type": "string"
|
|
79142
80445
|
},
|
|
@@ -79582,6 +80885,15 @@
|
|
|
79582
80885
|
},
|
|
79583
80886
|
"Partial<ILineLikeLabelSpec>": {
|
|
79584
80887
|
"properties": {
|
|
80888
|
+
"alignSelf": {
|
|
80889
|
+
"description": "inline元素和其他同行元素的对齐方式\n顶部的inline元素,'start' - 顶部对齐;'end' - '底部对齐'; 'middle' - 居中对齐\n底部的inline元素,'start' - 底部对齐;'end' - '顶部对齐'; 'middle' - 居中对齐\n左侧的inline元素,'start' - 左侧对齐;'end' - '右侧对齐'; 'middle' - 居中对齐\n右侧的inline元素,'start' - 右侧对齐;'end' - '左侧对齐'; 'middle' - 居中对齐",
|
|
80890
|
+
"enum": [
|
|
80891
|
+
"end",
|
|
80892
|
+
"middle",
|
|
80893
|
+
"start"
|
|
80894
|
+
],
|
|
80895
|
+
"type": "string"
|
|
80896
|
+
},
|
|
79585
80897
|
"animation": {
|
|
79586
80898
|
"anyOf": [
|
|
79587
80899
|
{
|
|
@@ -79633,6 +80945,11 @@
|
|
|
79633
80945
|
"id": {
|
|
79634
80946
|
"$ref": "#/definitions/StringOrNumber"
|
|
79635
80947
|
},
|
|
80948
|
+
"indent": {
|
|
80949
|
+
"$ref": "#/definitions/ILayoutPaddingSpec",
|
|
80950
|
+
"description": "模块的布局锁进",
|
|
80951
|
+
"since": "1.8.6"
|
|
80952
|
+
},
|
|
79636
80953
|
"interactive": {
|
|
79637
80954
|
"description": "是否支持交互。@default false",
|
|
79638
80955
|
"type": "boolean"
|
|
@@ -79802,6 +81119,12 @@
|
|
|
79802
81119
|
"description": "是否支持3D",
|
|
79803
81120
|
"type": "boolean"
|
|
79804
81121
|
},
|
|
81122
|
+
"syncState": {
|
|
81123
|
+
"default": false,
|
|
81124
|
+
"description": "是否同步数据图元的状态变化",
|
|
81125
|
+
"since": "1.9.0",
|
|
81126
|
+
"type": "boolean"
|
|
81127
|
+
},
|
|
79805
81128
|
"textType": {
|
|
79806
81129
|
"type": "string"
|
|
79807
81130
|
},
|
|
@@ -79929,6 +81252,27 @@
|
|
|
79929
81252
|
},
|
|
79930
81253
|
"type": "object"
|
|
79931
81254
|
},
|
|
81255
|
+
"Partial<IMarkTheme<ILiquidMarkSpec>>": {
|
|
81256
|
+
"properties": {
|
|
81257
|
+
"interactive": {
|
|
81258
|
+
"description": "可交互的开关",
|
|
81259
|
+
"type": "boolean"
|
|
81260
|
+
},
|
|
81261
|
+
"state": {
|
|
81262
|
+
"$ref": "#/definitions/Record<string,ILiquidMarkSpec>",
|
|
81263
|
+
"description": "不同状态下的样式配置"
|
|
81264
|
+
},
|
|
81265
|
+
"style": {
|
|
81266
|
+
"$ref": "#/definitions/ILiquidMarkSpec",
|
|
81267
|
+
"description": "默认样式设置"
|
|
81268
|
+
},
|
|
81269
|
+
"visible": {
|
|
81270
|
+
"description": "mark 层 是否显示配置",
|
|
81271
|
+
"type": "boolean"
|
|
81272
|
+
}
|
|
81273
|
+
},
|
|
81274
|
+
"type": "object"
|
|
81275
|
+
},
|
|
79932
81276
|
"Partial<IMarkTheme<IPathMarkSpec>&PinMarkSpec>": {
|
|
79933
81277
|
"properties": {
|
|
79934
81278
|
"height": {
|
|
@@ -86147,6 +87491,9 @@
|
|
|
86147
87491
|
"link": {
|
|
86148
87492
|
"$ref": "#/definitions/ColorScheme"
|
|
86149
87493
|
},
|
|
87494
|
+
"liquid": {
|
|
87495
|
+
"$ref": "#/definitions/ColorScheme"
|
|
87496
|
+
},
|
|
86150
87497
|
"map": {
|
|
86151
87498
|
"$ref": "#/definitions/ColorScheme"
|
|
86152
87499
|
},
|
|
@@ -86514,6 +87861,492 @@
|
|
|
86514
87861
|
"Permissions": {
|
|
86515
87862
|
"type": "object"
|
|
86516
87863
|
},
|
|
87864
|
+
"Pick<ElementActiveByLegendSpec,\"type\"|\"state\"|\"filterType\">": {
|
|
87865
|
+
"properties": {
|
|
87866
|
+
"filterType": {
|
|
87867
|
+
"enum": [
|
|
87868
|
+
"groupKey",
|
|
87869
|
+
"key"
|
|
87870
|
+
],
|
|
87871
|
+
"type": "string"
|
|
87872
|
+
},
|
|
87873
|
+
"state": {
|
|
87874
|
+
"type": "string"
|
|
87875
|
+
},
|
|
87876
|
+
"type": {
|
|
87877
|
+
"const": "element-active-by-legend",
|
|
87878
|
+
"type": "string"
|
|
87879
|
+
}
|
|
87880
|
+
},
|
|
87881
|
+
"required": [
|
|
87882
|
+
"type"
|
|
87883
|
+
],
|
|
87884
|
+
"type": "object"
|
|
87885
|
+
},
|
|
87886
|
+
"Pick<ElementActiveSpec,\"type\"|\"state\"|\"trigger\"|\"triggerOff\">": {
|
|
87887
|
+
"properties": {
|
|
87888
|
+
"state": {
|
|
87889
|
+
"type": "string"
|
|
87890
|
+
},
|
|
87891
|
+
"trigger": {
|
|
87892
|
+
"anyOf": [
|
|
87893
|
+
{
|
|
87894
|
+
"items": {
|
|
87895
|
+
"$ref": "#/definitions/EventType"
|
|
87896
|
+
},
|
|
87897
|
+
"type": "array"
|
|
87898
|
+
},
|
|
87899
|
+
{
|
|
87900
|
+
"enum": [
|
|
87901
|
+
"click",
|
|
87902
|
+
"dblclick",
|
|
87903
|
+
"drag",
|
|
87904
|
+
"dragend",
|
|
87905
|
+
"dragenter",
|
|
87906
|
+
"dragleave",
|
|
87907
|
+
"dragover",
|
|
87908
|
+
"dragstart",
|
|
87909
|
+
"drop",
|
|
87910
|
+
"mousedown",
|
|
87911
|
+
"mouseenter",
|
|
87912
|
+
"mouseleave",
|
|
87913
|
+
"mousemove",
|
|
87914
|
+
"mouseout",
|
|
87915
|
+
"mouseover",
|
|
87916
|
+
"mouseup",
|
|
87917
|
+
"mouseupoutside",
|
|
87918
|
+
"pan",
|
|
87919
|
+
"panend",
|
|
87920
|
+
"panstart",
|
|
87921
|
+
"pinch",
|
|
87922
|
+
"pinchend",
|
|
87923
|
+
"pinchstart",
|
|
87924
|
+
"pointerdown",
|
|
87925
|
+
"pointerenter",
|
|
87926
|
+
"pointerleave",
|
|
87927
|
+
"pointermove",
|
|
87928
|
+
"pointerout",
|
|
87929
|
+
"pointerover",
|
|
87930
|
+
"pointertap",
|
|
87931
|
+
"pointerup",
|
|
87932
|
+
"pointerupoutside",
|
|
87933
|
+
"press",
|
|
87934
|
+
"pressend",
|
|
87935
|
+
"pressup",
|
|
87936
|
+
"resize",
|
|
87937
|
+
"rightdown",
|
|
87938
|
+
"rightup",
|
|
87939
|
+
"rightupoutside",
|
|
87940
|
+
"swipe",
|
|
87941
|
+
"tap",
|
|
87942
|
+
"touchcancel",
|
|
87943
|
+
"touchend",
|
|
87944
|
+
"touchendoutside",
|
|
87945
|
+
"touchmove",
|
|
87946
|
+
"touchstart",
|
|
87947
|
+
"wheel"
|
|
87948
|
+
],
|
|
87949
|
+
"type": "string"
|
|
87950
|
+
}
|
|
87951
|
+
]
|
|
87952
|
+
},
|
|
87953
|
+
"triggerOff": {
|
|
87954
|
+
"anyOf": [
|
|
87955
|
+
{
|
|
87956
|
+
"items": {
|
|
87957
|
+
"$ref": "#/definitions/EventType"
|
|
87958
|
+
},
|
|
87959
|
+
"type": "array"
|
|
87960
|
+
},
|
|
87961
|
+
{
|
|
87962
|
+
"enum": [
|
|
87963
|
+
"click",
|
|
87964
|
+
"dblclick",
|
|
87965
|
+
"drag",
|
|
87966
|
+
"dragend",
|
|
87967
|
+
"dragenter",
|
|
87968
|
+
"dragleave",
|
|
87969
|
+
"dragover",
|
|
87970
|
+
"dragstart",
|
|
87971
|
+
"drop",
|
|
87972
|
+
"mousedown",
|
|
87973
|
+
"mouseenter",
|
|
87974
|
+
"mouseleave",
|
|
87975
|
+
"mousemove",
|
|
87976
|
+
"mouseout",
|
|
87977
|
+
"mouseover",
|
|
87978
|
+
"mouseup",
|
|
87979
|
+
"mouseupoutside",
|
|
87980
|
+
"pan",
|
|
87981
|
+
"panend",
|
|
87982
|
+
"panstart",
|
|
87983
|
+
"pinch",
|
|
87984
|
+
"pinchend",
|
|
87985
|
+
"pinchstart",
|
|
87986
|
+
"pointerdown",
|
|
87987
|
+
"pointerenter",
|
|
87988
|
+
"pointerleave",
|
|
87989
|
+
"pointermove",
|
|
87990
|
+
"pointerout",
|
|
87991
|
+
"pointerover",
|
|
87992
|
+
"pointertap",
|
|
87993
|
+
"pointerup",
|
|
87994
|
+
"pointerupoutside",
|
|
87995
|
+
"press",
|
|
87996
|
+
"pressend",
|
|
87997
|
+
"pressup",
|
|
87998
|
+
"resize",
|
|
87999
|
+
"rightdown",
|
|
88000
|
+
"rightup",
|
|
88001
|
+
"rightupoutside",
|
|
88002
|
+
"swipe",
|
|
88003
|
+
"tap",
|
|
88004
|
+
"touchcancel",
|
|
88005
|
+
"touchend",
|
|
88006
|
+
"touchendoutside",
|
|
88007
|
+
"touchmove",
|
|
88008
|
+
"touchstart",
|
|
88009
|
+
"wheel"
|
|
88010
|
+
],
|
|
88011
|
+
"type": "string"
|
|
88012
|
+
}
|
|
88013
|
+
]
|
|
88014
|
+
},
|
|
88015
|
+
"type": {
|
|
88016
|
+
"const": "element-active",
|
|
88017
|
+
"type": "string"
|
|
88018
|
+
}
|
|
88019
|
+
},
|
|
88020
|
+
"required": [
|
|
88021
|
+
"type"
|
|
88022
|
+
],
|
|
88023
|
+
"type": "object"
|
|
88024
|
+
},
|
|
88025
|
+
"Pick<ElementHighlightByGroupSpec,\"type\"|\"trigger\"|\"triggerOff\"|\"blurState\"|\"highlightState\">": {
|
|
88026
|
+
"properties": {
|
|
88027
|
+
"blurState": {
|
|
88028
|
+
"type": "string"
|
|
88029
|
+
},
|
|
88030
|
+
"highlightState": {
|
|
88031
|
+
"type": "string"
|
|
88032
|
+
},
|
|
88033
|
+
"trigger": {
|
|
88034
|
+
"$ref": "#/definitions/EventType"
|
|
88035
|
+
},
|
|
88036
|
+
"triggerOff": {
|
|
88037
|
+
"$ref": "#/definitions/EventType"
|
|
88038
|
+
},
|
|
88039
|
+
"type": {
|
|
88040
|
+
"const": "element-highlight-by-group",
|
|
88041
|
+
"type": "string"
|
|
88042
|
+
}
|
|
88043
|
+
},
|
|
88044
|
+
"required": [
|
|
88045
|
+
"type"
|
|
88046
|
+
],
|
|
88047
|
+
"type": "object"
|
|
88048
|
+
},
|
|
88049
|
+
"Pick<ElementHighlightByKeySpec,\"type\"|\"trigger\"|\"triggerOff\"|\"blurState\"|\"highlightState\">": {
|
|
88050
|
+
"properties": {
|
|
88051
|
+
"blurState": {
|
|
88052
|
+
"type": "string"
|
|
88053
|
+
},
|
|
88054
|
+
"highlightState": {
|
|
88055
|
+
"type": "string"
|
|
88056
|
+
},
|
|
88057
|
+
"trigger": {
|
|
88058
|
+
"$ref": "#/definitions/EventType"
|
|
88059
|
+
},
|
|
88060
|
+
"triggerOff": {
|
|
88061
|
+
"$ref": "#/definitions/EventType"
|
|
88062
|
+
},
|
|
88063
|
+
"type": {
|
|
88064
|
+
"const": "element-highlight-by-key",
|
|
88065
|
+
"type": "string"
|
|
88066
|
+
}
|
|
88067
|
+
},
|
|
88068
|
+
"required": [
|
|
88069
|
+
"type"
|
|
88070
|
+
],
|
|
88071
|
+
"type": "object"
|
|
88072
|
+
},
|
|
88073
|
+
"Pick<ElementHighlightByLegendSpec,\"type\"|\"blurState\"|\"highlightState\"|\"filterType\">": {
|
|
88074
|
+
"properties": {
|
|
88075
|
+
"blurState": {
|
|
88076
|
+
"type": "string"
|
|
88077
|
+
},
|
|
88078
|
+
"filterType": {
|
|
88079
|
+
"enum": [
|
|
88080
|
+
"groupKey",
|
|
88081
|
+
"key"
|
|
88082
|
+
],
|
|
88083
|
+
"type": "string"
|
|
88084
|
+
},
|
|
88085
|
+
"highlightState": {
|
|
88086
|
+
"type": "string"
|
|
88087
|
+
},
|
|
88088
|
+
"type": {
|
|
88089
|
+
"const": "element-highlight-by-legend",
|
|
88090
|
+
"type": "string"
|
|
88091
|
+
}
|
|
88092
|
+
},
|
|
88093
|
+
"required": [
|
|
88094
|
+
"type"
|
|
88095
|
+
],
|
|
88096
|
+
"type": "object"
|
|
88097
|
+
},
|
|
88098
|
+
"Pick<ElementHighlightByNameSpec,\"type\"|\"blurState\"|\"highlightState\"|\"graphicName\"|\"parseData\">": {
|
|
88099
|
+
"properties": {
|
|
88100
|
+
"blurState": {
|
|
88101
|
+
"type": "string"
|
|
88102
|
+
},
|
|
88103
|
+
"graphicName": {
|
|
88104
|
+
"anyOf": [
|
|
88105
|
+
{
|
|
88106
|
+
"items": {
|
|
88107
|
+
"type": "string"
|
|
88108
|
+
},
|
|
88109
|
+
"type": "array"
|
|
88110
|
+
},
|
|
88111
|
+
{
|
|
88112
|
+
"type": "string"
|
|
88113
|
+
}
|
|
88114
|
+
]
|
|
88115
|
+
},
|
|
88116
|
+
"highlightState": {
|
|
88117
|
+
"type": "string"
|
|
88118
|
+
},
|
|
88119
|
+
"parseData": {
|
|
88120
|
+
"typeof": "function"
|
|
88121
|
+
},
|
|
88122
|
+
"type": {
|
|
88123
|
+
"const": "element-highlight-by-name",
|
|
88124
|
+
"type": "string"
|
|
88125
|
+
}
|
|
88126
|
+
},
|
|
88127
|
+
"required": [
|
|
88128
|
+
"type"
|
|
88129
|
+
],
|
|
88130
|
+
"type": "object"
|
|
88131
|
+
},
|
|
88132
|
+
"Pick<ElementHighlightSpec,\"type\"|\"trigger\"|\"triggerOff\"|\"blurState\"|\"highlightState\">": {
|
|
88133
|
+
"properties": {
|
|
88134
|
+
"blurState": {
|
|
88135
|
+
"type": "string"
|
|
88136
|
+
},
|
|
88137
|
+
"highlightState": {
|
|
88138
|
+
"type": "string"
|
|
88139
|
+
},
|
|
88140
|
+
"trigger": {
|
|
88141
|
+
"$ref": "#/definitions/EventType"
|
|
88142
|
+
},
|
|
88143
|
+
"triggerOff": {
|
|
88144
|
+
"$ref": "#/definitions/EventType"
|
|
88145
|
+
},
|
|
88146
|
+
"type": {
|
|
88147
|
+
"const": "element-highlight",
|
|
88148
|
+
"type": "string"
|
|
88149
|
+
}
|
|
88150
|
+
},
|
|
88151
|
+
"required": [
|
|
88152
|
+
"type"
|
|
88153
|
+
],
|
|
88154
|
+
"type": "object"
|
|
88155
|
+
},
|
|
88156
|
+
"Pick<ElementSelectSpec,\"type\"|\"state\"|\"trigger\"|\"triggerOff\"|\"isMultiple\"|\"reverseState\">": {
|
|
88157
|
+
"properties": {
|
|
88158
|
+
"isMultiple": {
|
|
88159
|
+
"type": "boolean"
|
|
88160
|
+
},
|
|
88161
|
+
"reverseState": {
|
|
88162
|
+
"type": "string"
|
|
88163
|
+
},
|
|
88164
|
+
"state": {
|
|
88165
|
+
"type": "string"
|
|
88166
|
+
},
|
|
88167
|
+
"trigger": {
|
|
88168
|
+
"anyOf": [
|
|
88169
|
+
{
|
|
88170
|
+
"items": {
|
|
88171
|
+
"$ref": "#/definitions/EventType"
|
|
88172
|
+
},
|
|
88173
|
+
"type": "array"
|
|
88174
|
+
},
|
|
88175
|
+
{
|
|
88176
|
+
"enum": [
|
|
88177
|
+
"click",
|
|
88178
|
+
"dblclick",
|
|
88179
|
+
"drag",
|
|
88180
|
+
"dragend",
|
|
88181
|
+
"dragenter",
|
|
88182
|
+
"dragleave",
|
|
88183
|
+
"dragover",
|
|
88184
|
+
"dragstart",
|
|
88185
|
+
"drop",
|
|
88186
|
+
"mousedown",
|
|
88187
|
+
"mouseenter",
|
|
88188
|
+
"mouseleave",
|
|
88189
|
+
"mousemove",
|
|
88190
|
+
"mouseout",
|
|
88191
|
+
"mouseover",
|
|
88192
|
+
"mouseup",
|
|
88193
|
+
"mouseupoutside",
|
|
88194
|
+
"pan",
|
|
88195
|
+
"panend",
|
|
88196
|
+
"panstart",
|
|
88197
|
+
"pinch",
|
|
88198
|
+
"pinchend",
|
|
88199
|
+
"pinchstart",
|
|
88200
|
+
"pointerdown",
|
|
88201
|
+
"pointerenter",
|
|
88202
|
+
"pointerleave",
|
|
88203
|
+
"pointermove",
|
|
88204
|
+
"pointerout",
|
|
88205
|
+
"pointerover",
|
|
88206
|
+
"pointertap",
|
|
88207
|
+
"pointerup",
|
|
88208
|
+
"pointerupoutside",
|
|
88209
|
+
"press",
|
|
88210
|
+
"pressend",
|
|
88211
|
+
"pressup",
|
|
88212
|
+
"resize",
|
|
88213
|
+
"rightdown",
|
|
88214
|
+
"rightup",
|
|
88215
|
+
"rightupoutside",
|
|
88216
|
+
"swipe",
|
|
88217
|
+
"tap",
|
|
88218
|
+
"touchcancel",
|
|
88219
|
+
"touchend",
|
|
88220
|
+
"touchendoutside",
|
|
88221
|
+
"touchmove",
|
|
88222
|
+
"touchstart",
|
|
88223
|
+
"wheel"
|
|
88224
|
+
],
|
|
88225
|
+
"type": "string"
|
|
88226
|
+
}
|
|
88227
|
+
]
|
|
88228
|
+
},
|
|
88229
|
+
"triggerOff": {
|
|
88230
|
+
"anyOf": [
|
|
88231
|
+
{
|
|
88232
|
+
"items": {
|
|
88233
|
+
"$ref": "#/definitions/EventType"
|
|
88234
|
+
},
|
|
88235
|
+
"type": "array"
|
|
88236
|
+
},
|
|
88237
|
+
{
|
|
88238
|
+
"enum": [
|
|
88239
|
+
"click",
|
|
88240
|
+
"dblclick",
|
|
88241
|
+
"drag",
|
|
88242
|
+
"dragend",
|
|
88243
|
+
"dragenter",
|
|
88244
|
+
"dragleave",
|
|
88245
|
+
"dragover",
|
|
88246
|
+
"dragstart",
|
|
88247
|
+
"drop",
|
|
88248
|
+
"empty",
|
|
88249
|
+
"mousedown",
|
|
88250
|
+
"mouseenter",
|
|
88251
|
+
"mouseleave",
|
|
88252
|
+
"mousemove",
|
|
88253
|
+
"mouseout",
|
|
88254
|
+
"mouseover",
|
|
88255
|
+
"mouseup",
|
|
88256
|
+
"mouseupoutside",
|
|
88257
|
+
"pan",
|
|
88258
|
+
"panend",
|
|
88259
|
+
"panstart",
|
|
88260
|
+
"pinch",
|
|
88261
|
+
"pinchend",
|
|
88262
|
+
"pinchstart",
|
|
88263
|
+
"pointerdown",
|
|
88264
|
+
"pointerenter",
|
|
88265
|
+
"pointerleave",
|
|
88266
|
+
"pointermove",
|
|
88267
|
+
"pointerout",
|
|
88268
|
+
"pointerover",
|
|
88269
|
+
"pointertap",
|
|
88270
|
+
"pointerup",
|
|
88271
|
+
"pointerupoutside",
|
|
88272
|
+
"press",
|
|
88273
|
+
"pressend",
|
|
88274
|
+
"pressup",
|
|
88275
|
+
"resize",
|
|
88276
|
+
"rightdown",
|
|
88277
|
+
"rightup",
|
|
88278
|
+
"rightupoutside",
|
|
88279
|
+
"swipe",
|
|
88280
|
+
"tap",
|
|
88281
|
+
"touchcancel",
|
|
88282
|
+
"touchend",
|
|
88283
|
+
"touchendoutside",
|
|
88284
|
+
"touchmove",
|
|
88285
|
+
"touchstart",
|
|
88286
|
+
"view:click",
|
|
88287
|
+
"view:dblclick",
|
|
88288
|
+
"view:drag",
|
|
88289
|
+
"view:dragend",
|
|
88290
|
+
"view:dragenter",
|
|
88291
|
+
"view:dragleave",
|
|
88292
|
+
"view:dragover",
|
|
88293
|
+
"view:dragstart",
|
|
88294
|
+
"view:drop",
|
|
88295
|
+
"view:mousedown",
|
|
88296
|
+
"view:mouseenter",
|
|
88297
|
+
"view:mouseleave",
|
|
88298
|
+
"view:mousemove",
|
|
88299
|
+
"view:mouseout",
|
|
88300
|
+
"view:mouseover",
|
|
88301
|
+
"view:mouseup",
|
|
88302
|
+
"view:mouseupoutside",
|
|
88303
|
+
"view:pan",
|
|
88304
|
+
"view:panend",
|
|
88305
|
+
"view:panstart",
|
|
88306
|
+
"view:pinch",
|
|
88307
|
+
"view:pinchend",
|
|
88308
|
+
"view:pinchstart",
|
|
88309
|
+
"view:pointerdown",
|
|
88310
|
+
"view:pointerenter",
|
|
88311
|
+
"view:pointerleave",
|
|
88312
|
+
"view:pointerout",
|
|
88313
|
+
"view:pointerover",
|
|
88314
|
+
"view:pointertap",
|
|
88315
|
+
"view:pointerup",
|
|
88316
|
+
"view:pointerupoutside",
|
|
88317
|
+
"view:press",
|
|
88318
|
+
"view:pressend",
|
|
88319
|
+
"view:pressup",
|
|
88320
|
+
"view:rightdown",
|
|
88321
|
+
"view:rightup",
|
|
88322
|
+
"view:rightupoutside",
|
|
88323
|
+
"view:swipe",
|
|
88324
|
+
"view:tap",
|
|
88325
|
+
"view:touchcancel",
|
|
88326
|
+
"view:touchend",
|
|
88327
|
+
"view:touchendoutside",
|
|
88328
|
+
"view:touchmove",
|
|
88329
|
+
"view:touchstart",
|
|
88330
|
+
"view:wheel",
|
|
88331
|
+
"wheel"
|
|
88332
|
+
],
|
|
88333
|
+
"type": "string"
|
|
88334
|
+
},
|
|
88335
|
+
{
|
|
88336
|
+
"type": "number"
|
|
88337
|
+
}
|
|
88338
|
+
]
|
|
88339
|
+
},
|
|
88340
|
+
"type": {
|
|
88341
|
+
"const": "element-select",
|
|
88342
|
+
"type": "string"
|
|
88343
|
+
}
|
|
88344
|
+
},
|
|
88345
|
+
"required": [
|
|
88346
|
+
"type"
|
|
88347
|
+
],
|
|
88348
|
+
"type": "object"
|
|
88349
|
+
},
|
|
86517
88350
|
"Pick<IRectMarkSpec,\"fillOpacity\"|\"fill\"|\"cornerRadius\">": {
|
|
86518
88351
|
"properties": {
|
|
86519
88352
|
"cornerRadius": {
|
|
@@ -86757,34 +88590,34 @@
|
|
|
86757
88590
|
},
|
|
86758
88591
|
"Promise<FontFaceSet>": {
|
|
86759
88592
|
"properties": {
|
|
86760
|
-
"__@toStringTag@
|
|
88593
|
+
"__@toStringTag@12732": {
|
|
86761
88594
|
"type": "string"
|
|
86762
88595
|
}
|
|
86763
88596
|
},
|
|
86764
88597
|
"required": [
|
|
86765
|
-
"__@toStringTag@
|
|
88598
|
+
"__@toStringTag@12732"
|
|
86766
88599
|
],
|
|
86767
88600
|
"type": "object"
|
|
86768
88601
|
},
|
|
86769
88602
|
"Promise<ServiceWorkerRegistration>": {
|
|
86770
88603
|
"properties": {
|
|
86771
|
-
"__@toStringTag@
|
|
88604
|
+
"__@toStringTag@12732": {
|
|
86772
88605
|
"type": "string"
|
|
86773
88606
|
}
|
|
86774
88607
|
},
|
|
86775
88608
|
"required": [
|
|
86776
|
-
"__@toStringTag@
|
|
88609
|
+
"__@toStringTag@12732"
|
|
86777
88610
|
],
|
|
86778
88611
|
"type": "object"
|
|
86779
88612
|
},
|
|
86780
88613
|
"Promise<any>": {
|
|
86781
88614
|
"properties": {
|
|
86782
|
-
"__@toStringTag@
|
|
88615
|
+
"__@toStringTag@12732": {
|
|
86783
88616
|
"type": "string"
|
|
86784
88617
|
}
|
|
86785
88618
|
},
|
|
86786
88619
|
"required": [
|
|
86787
|
-
"__@toStringTag@
|
|
88620
|
+
"__@toStringTag@12732"
|
|
86788
88621
|
],
|
|
86789
88622
|
"type": "object"
|
|
86790
88623
|
},
|
|
@@ -86821,6 +88654,9 @@
|
|
|
86821
88654
|
"Record<string,ILineMarkSpec>": {
|
|
86822
88655
|
"type": "object"
|
|
86823
88656
|
},
|
|
88657
|
+
"Record<string,ILiquidMarkSpec>": {
|
|
88658
|
+
"type": "object"
|
|
88659
|
+
},
|
|
86824
88660
|
"Record<string,IPathMarkSpec>": {
|
|
86825
88661
|
"type": "object"
|
|
86826
88662
|
},
|