@visactor/vchart-schema 1.12.15 → 1.12.16-alpha.0
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 +13 -1
package/package.json
CHANGED
package/vchart.json
CHANGED
|
@@ -49190,6 +49190,15 @@
|
|
|
49190
49190
|
"description": "最小值,当且仅当该值小于数据最小值时,才能生效\n注意:不建议和配置`min`一起使用",
|
|
49191
49191
|
"since": "1.11.0"
|
|
49192
49192
|
},
|
|
49193
|
+
"tooltipFilterMode": {
|
|
49194
|
+
"default": "'multiple'",
|
|
49195
|
+
"description": "配置 tooltipFilterRange 后的数据筛选规则\n当 `tooltipFilterMode` 为 'multiple' 时,`tooltipFilterRange` 范围内的所有数据都将被选中。\n当 `tooltipFilterMode` 为 'single' 时,将会选中 `tooltipFilterRange` 范围内最近的数据。",
|
|
49196
|
+
"enum": [
|
|
49197
|
+
"multiple",
|
|
49198
|
+
"single"
|
|
49199
|
+
],
|
|
49200
|
+
"type": "string"
|
|
49201
|
+
},
|
|
49193
49202
|
"tooltipFilterRange": {
|
|
49194
49203
|
"anyOf": [
|
|
49195
49204
|
{
|
|
@@ -49205,11 +49214,14 @@
|
|
|
49205
49214
|
"minItems": 2,
|
|
49206
49215
|
"type": "array"
|
|
49207
49216
|
},
|
|
49217
|
+
{
|
|
49218
|
+
"typeof": "function"
|
|
49219
|
+
},
|
|
49208
49220
|
{
|
|
49209
49221
|
"type": "number"
|
|
49210
49222
|
}
|
|
49211
49223
|
],
|
|
49212
|
-
"description": "连续轴上的 dimension tooltip 数据筛选范围\n如果配置为单个数字 d,则筛选区间为 [x0 - d, x0 + d];如果配置为二元组 [d1, d2],则筛选区间为 [x0 + d1, x0 + d2]",
|
|
49224
|
+
"description": "连续轴上的 dimension tooltip 数据筛选范围\n如果配置为单个数字 d,则筛选区间为 [x0 - d, x0 + d];如果配置为二元组 [d1, d2],则筛选区间为 [x0 + d1, x0 + d2]\n如果配置为函数 f, 函数的返回值将会作为数据筛选范围的值",
|
|
49213
49225
|
"since": "1.4.0"
|
|
49214
49226
|
},
|
|
49215
49227
|
"zero": {
|