@uwdata/mosaic-spec 0.10.0 → 0.12.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/dist/mosaic-schema.json +2122 -422
- package/dist/mosaic-spec.js +7783 -15281
- package/dist/mosaic-spec.min.js +29 -38
- package/dist/types/ast/ColumnParamRefNode.d.ts +8 -0
- package/dist/types/ast/ExpressionNode.d.ts +2 -4
- package/dist/types/ast/ParamNode.d.ts +1 -2
- package/dist/types/ast/ParamRefNode.d.ts +1 -1
- package/dist/types/ast/SelectionNode.d.ts +15 -5
- package/dist/types/constants.d.ts +2 -1
- package/dist/types/parse-spec.d.ts +33 -8
- package/dist/types/spec/Input.d.ts +1 -1
- package/dist/types/spec/Param.d.ts +6 -0
- package/dist/types/spec/PlotAttribute.d.ts +11 -5
- package/dist/types/spec/PlotFrom.d.ts +1 -1
- package/dist/types/spec/PlotInteractor.d.ts +2 -1
- package/dist/types/spec/Transform.d.ts +8 -2
- package/dist/types/spec/interactors/BrushStyles.d.ts +27 -0
- package/dist/types/spec/interactors/Interval1D.d.ts +6 -27
- package/dist/types/spec/interactors/Interval2D.d.ts +6 -5
- package/dist/types/spec/interactors/Region.d.ts +32 -0
- package/dist/types/spec/interactors/Toggle.d.ts +3 -3
- package/dist/types/spec/marks/Marks.d.ts +5 -0
- package/package.json +7 -7
- package/src/ast/ColumnParamRefNode.js +21 -0
- package/src/ast/DataNode.js +3 -3
- package/src/ast/ExpressionNode.js +17 -22
- package/src/ast/ParamNode.js +3 -4
- package/src/ast/ParamRefNode.js +1 -1
- package/src/ast/PlotFromNode.js +6 -6
- package/src/ast/PlotMarkNode.js +2 -2
- package/src/ast/SelectionNode.js +46 -14
- package/src/ast/TransformNode.js +14 -12
- package/src/config/transforms.js +1 -0
- package/src/constants.js +2 -1
- package/src/parse-spec.js +53 -16
- package/src/spec/Input.ts +1 -1
- package/src/spec/Param.ts +7 -0
- package/src/spec/PlotAttribute.ts +13 -5
- package/src/spec/PlotFrom.ts +1 -1
- package/src/spec/PlotInteractor.ts +7 -5
- package/src/spec/Spec.ts +1 -1
- package/src/spec/Transform.ts +10 -1
- package/src/spec/interactors/BrushStyles.ts +27 -0
- package/src/spec/interactors/Interval1D.ts +6 -28
- package/src/spec/interactors/Interval2D.ts +6 -5
- package/src/spec/interactors/Region.ts +34 -0
- package/src/spec/interactors/Toggle.ts +3 -3
- package/src/spec/marks/Marks.ts +6 -0
package/dist/mosaic-schema.json
CHANGED
|
@@ -106,6 +106,13 @@
|
|
|
106
106
|
"$ref": "#/definitions/ChannelValue",
|
|
107
107
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
108
108
|
},
|
|
109
|
+
"channels": {
|
|
110
|
+
"additionalProperties": {
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
114
|
+
"type": "object"
|
|
115
|
+
},
|
|
109
116
|
"clip": {
|
|
110
117
|
"anyOf": [
|
|
111
118
|
{
|
|
@@ -1294,6 +1301,13 @@
|
|
|
1294
1301
|
"$ref": "#/definitions/ChannelValue",
|
|
1295
1302
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
1296
1303
|
},
|
|
1304
|
+
"channels": {
|
|
1305
|
+
"additionalProperties": {
|
|
1306
|
+
"type": "string"
|
|
1307
|
+
},
|
|
1308
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
1309
|
+
"type": "object"
|
|
1310
|
+
},
|
|
1297
1311
|
"clip": {
|
|
1298
1312
|
"anyOf": [
|
|
1299
1313
|
{
|
|
@@ -2482,6 +2496,13 @@
|
|
|
2482
2496
|
"$ref": "#/definitions/ChannelValue",
|
|
2483
2497
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
2484
2498
|
},
|
|
2499
|
+
"channels": {
|
|
2500
|
+
"additionalProperties": {
|
|
2501
|
+
"type": "string"
|
|
2502
|
+
},
|
|
2503
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
2504
|
+
"type": "object"
|
|
2505
|
+
},
|
|
2485
2506
|
"clip": {
|
|
2486
2507
|
"anyOf": [
|
|
2487
2508
|
{
|
|
@@ -3646,12 +3667,21 @@
|
|
|
3646
3667
|
"argmax": {
|
|
3647
3668
|
"description": "Find a value of the first column that maximizes the second column.",
|
|
3648
3669
|
"items": {
|
|
3649
|
-
"
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3670
|
+
"anyOf": [
|
|
3671
|
+
{
|
|
3672
|
+
"type": "string"
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
"type": "number"
|
|
3676
|
+
},
|
|
3677
|
+
{
|
|
3678
|
+
"type": "boolean"
|
|
3679
|
+
},
|
|
3680
|
+
{
|
|
3681
|
+
"$ref": "#/definitions/ParamRef"
|
|
3682
|
+
}
|
|
3683
|
+
],
|
|
3684
|
+
"description": "A transform argument."
|
|
3655
3685
|
},
|
|
3656
3686
|
"maxItems": 2,
|
|
3657
3687
|
"minItems": 2,
|
|
@@ -3730,12 +3760,21 @@
|
|
|
3730
3760
|
"argmin": {
|
|
3731
3761
|
"description": "Find a value of the first column that minimizes the second column.",
|
|
3732
3762
|
"items": {
|
|
3733
|
-
"
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3763
|
+
"anyOf": [
|
|
3764
|
+
{
|
|
3765
|
+
"type": "string"
|
|
3766
|
+
},
|
|
3767
|
+
{
|
|
3768
|
+
"type": "number"
|
|
3769
|
+
},
|
|
3770
|
+
{
|
|
3771
|
+
"type": "boolean"
|
|
3772
|
+
},
|
|
3773
|
+
{
|
|
3774
|
+
"$ref": "#/definitions/ParamRef"
|
|
3775
|
+
}
|
|
3776
|
+
],
|
|
3777
|
+
"description": "A transform argument."
|
|
3739
3778
|
},
|
|
3740
3779
|
"maxItems": 2,
|
|
3741
3780
|
"minItems": 2,
|
|
@@ -3852,6 +3891,13 @@
|
|
|
3852
3891
|
],
|
|
3853
3892
|
"description": "The angle, a constant in degrees, between the straight line intersecting the arrow’s two control points and the outgoing tangent direction of the arrow from the start point. The angle must be within ±90°; a positive angle will produce a clockwise curve, while a negative angle will produce a counterclockwise curve; zero (the default) will produce a straight line. Use true for 22.5°."
|
|
3854
3893
|
},
|
|
3894
|
+
"channels": {
|
|
3895
|
+
"additionalProperties": {
|
|
3896
|
+
"type": "string"
|
|
3897
|
+
},
|
|
3898
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
3899
|
+
"type": "object"
|
|
3900
|
+
},
|
|
3855
3901
|
"clip": {
|
|
3856
3902
|
"anyOf": [
|
|
3857
3903
|
{
|
|
@@ -5052,21 +5098,39 @@
|
|
|
5052
5098
|
"avg": {
|
|
5053
5099
|
"anyOf": [
|
|
5054
5100
|
{
|
|
5055
|
-
"
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5101
|
+
"anyOf": [
|
|
5102
|
+
{
|
|
5103
|
+
"type": "string"
|
|
5104
|
+
},
|
|
5105
|
+
{
|
|
5106
|
+
"type": "number"
|
|
5107
|
+
},
|
|
5108
|
+
{
|
|
5109
|
+
"type": "boolean"
|
|
5110
|
+
},
|
|
5111
|
+
{
|
|
5112
|
+
"$ref": "#/definitions/ParamRef"
|
|
5113
|
+
}
|
|
5114
|
+
],
|
|
5115
|
+
"description": "A transform argument."
|
|
5061
5116
|
},
|
|
5062
5117
|
{
|
|
5063
5118
|
"items": {
|
|
5064
|
-
"
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5119
|
+
"anyOf": [
|
|
5120
|
+
{
|
|
5121
|
+
"type": "string"
|
|
5122
|
+
},
|
|
5123
|
+
{
|
|
5124
|
+
"type": "number"
|
|
5125
|
+
},
|
|
5126
|
+
{
|
|
5127
|
+
"type": "boolean"
|
|
5128
|
+
},
|
|
5129
|
+
{
|
|
5130
|
+
"$ref": "#/definitions/ParamRef"
|
|
5131
|
+
}
|
|
5132
|
+
],
|
|
5133
|
+
"description": "A transform argument."
|
|
5070
5134
|
},
|
|
5071
5135
|
"maxItems": 1,
|
|
5072
5136
|
"minItems": 1,
|
|
@@ -5196,6 +5260,13 @@
|
|
|
5196
5260
|
"$ref": "#/definitions/ChannelValue",
|
|
5197
5261
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
5198
5262
|
},
|
|
5263
|
+
"channels": {
|
|
5264
|
+
"additionalProperties": {
|
|
5265
|
+
"type": "string"
|
|
5266
|
+
},
|
|
5267
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
5268
|
+
"type": "object"
|
|
5269
|
+
},
|
|
5199
5270
|
"clip": {
|
|
5200
5271
|
"anyOf": [
|
|
5201
5272
|
{
|
|
@@ -6871,6 +6942,13 @@
|
|
|
6871
6942
|
"$ref": "#/definitions/ChannelValue",
|
|
6872
6943
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
6873
6944
|
},
|
|
6945
|
+
"channels": {
|
|
6946
|
+
"additionalProperties": {
|
|
6947
|
+
"type": "string"
|
|
6948
|
+
},
|
|
6949
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
6950
|
+
"type": "object"
|
|
6951
|
+
},
|
|
6874
6952
|
"clip": {
|
|
6875
6953
|
"anyOf": [
|
|
6876
6954
|
{
|
|
@@ -8546,6 +8624,13 @@
|
|
|
8546
8624
|
"$ref": "#/definitions/ChannelValue",
|
|
8547
8625
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
8548
8626
|
},
|
|
8627
|
+
"channels": {
|
|
8628
|
+
"additionalProperties": {
|
|
8629
|
+
"type": "string"
|
|
8630
|
+
},
|
|
8631
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
8632
|
+
"type": "object"
|
|
8633
|
+
},
|
|
8549
8634
|
"clip": {
|
|
8550
8635
|
"anyOf": [
|
|
8551
8636
|
{
|
|
@@ -10221,6 +10306,13 @@
|
|
|
10221
10306
|
"$ref": "#/definitions/ChannelValue",
|
|
10222
10307
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
10223
10308
|
},
|
|
10309
|
+
"channels": {
|
|
10310
|
+
"additionalProperties": {
|
|
10311
|
+
"type": "string"
|
|
10312
|
+
},
|
|
10313
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
10314
|
+
"type": "object"
|
|
10315
|
+
},
|
|
10224
10316
|
"clip": {
|
|
10225
10317
|
"anyOf": [
|
|
10226
10318
|
{
|
|
@@ -11872,6 +11964,13 @@
|
|
|
11872
11964
|
"$ref": "#/definitions/ChannelValue",
|
|
11873
11965
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
11874
11966
|
},
|
|
11967
|
+
"channels": {
|
|
11968
|
+
"additionalProperties": {
|
|
11969
|
+
"type": "string"
|
|
11970
|
+
},
|
|
11971
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
11972
|
+
"type": "object"
|
|
11973
|
+
},
|
|
11875
11974
|
"clip": {
|
|
11876
11975
|
"anyOf": [
|
|
11877
11976
|
{
|
|
@@ -13132,6 +13231,13 @@
|
|
|
13132
13231
|
"$ref": "#/definitions/ChannelValue",
|
|
13133
13232
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
13134
13233
|
},
|
|
13234
|
+
"channels": {
|
|
13235
|
+
"additionalProperties": {
|
|
13236
|
+
"type": "string"
|
|
13237
|
+
},
|
|
13238
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
13239
|
+
"type": "object"
|
|
13240
|
+
},
|
|
13135
13241
|
"clip": {
|
|
13136
13242
|
"anyOf": [
|
|
13137
13243
|
{
|
|
@@ -14368,21 +14474,39 @@
|
|
|
14368
14474
|
"bin": {
|
|
14369
14475
|
"anyOf": [
|
|
14370
14476
|
{
|
|
14371
|
-
"
|
|
14372
|
-
|
|
14373
|
-
|
|
14374
|
-
|
|
14375
|
-
|
|
14376
|
-
|
|
14477
|
+
"anyOf": [
|
|
14478
|
+
{
|
|
14479
|
+
"type": "string"
|
|
14480
|
+
},
|
|
14481
|
+
{
|
|
14482
|
+
"type": "number"
|
|
14483
|
+
},
|
|
14484
|
+
{
|
|
14485
|
+
"type": "boolean"
|
|
14486
|
+
},
|
|
14487
|
+
{
|
|
14488
|
+
"$ref": "#/definitions/ParamRef"
|
|
14489
|
+
}
|
|
14490
|
+
],
|
|
14491
|
+
"description": "A transform argument."
|
|
14377
14492
|
},
|
|
14378
14493
|
{
|
|
14379
14494
|
"items": {
|
|
14380
|
-
"
|
|
14381
|
-
|
|
14382
|
-
|
|
14383
|
-
|
|
14384
|
-
|
|
14385
|
-
|
|
14495
|
+
"anyOf": [
|
|
14496
|
+
{
|
|
14497
|
+
"type": "string"
|
|
14498
|
+
},
|
|
14499
|
+
{
|
|
14500
|
+
"type": "number"
|
|
14501
|
+
},
|
|
14502
|
+
{
|
|
14503
|
+
"type": "boolean"
|
|
14504
|
+
},
|
|
14505
|
+
{
|
|
14506
|
+
"$ref": "#/definitions/ParamRef"
|
|
14507
|
+
}
|
|
14508
|
+
],
|
|
14509
|
+
"description": "A transform argument."
|
|
14386
14510
|
},
|
|
14387
14511
|
"maxItems": 1,
|
|
14388
14512
|
"minItems": 1,
|
|
@@ -14457,6 +14581,10 @@
|
|
|
14457
14581
|
"description": "The stroke color of the brush rectangle.",
|
|
14458
14582
|
"type": "string"
|
|
14459
14583
|
},
|
|
14584
|
+
"strokeDasharray": {
|
|
14585
|
+
"description": "The stroke dash array of the brush rectangle.",
|
|
14586
|
+
"type": "string"
|
|
14587
|
+
},
|
|
14460
14588
|
"strokeOpacity": {
|
|
14461
14589
|
"description": "The stroke opacity of the brush rectangle.",
|
|
14462
14590
|
"type": "number"
|
|
@@ -15711,6 +15839,9 @@
|
|
|
15711
15839
|
"verticalAlign": {
|
|
15712
15840
|
"type": "string"
|
|
15713
15841
|
},
|
|
15842
|
+
"viewTransitionName": {
|
|
15843
|
+
"type": "string"
|
|
15844
|
+
},
|
|
15714
15845
|
"visibility": {
|
|
15715
15846
|
"type": "string"
|
|
15716
15847
|
},
|
|
@@ -15996,6 +16127,13 @@
|
|
|
15996
16127
|
"$ref": "#/definitions/ChannelValue",
|
|
15997
16128
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
15998
16129
|
},
|
|
16130
|
+
"channels": {
|
|
16131
|
+
"additionalProperties": {
|
|
16132
|
+
"type": "string"
|
|
16133
|
+
},
|
|
16134
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
16135
|
+
"type": "object"
|
|
16136
|
+
},
|
|
15999
16137
|
"clip": {
|
|
16000
16138
|
"anyOf": [
|
|
16001
16139
|
{
|
|
@@ -17205,6 +17343,13 @@
|
|
|
17205
17343
|
"$ref": "#/definitions/ChannelValue",
|
|
17206
17344
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
17207
17345
|
},
|
|
17346
|
+
"channels": {
|
|
17347
|
+
"additionalProperties": {
|
|
17348
|
+
"type": "string"
|
|
17349
|
+
},
|
|
17350
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
17351
|
+
"type": "object"
|
|
17352
|
+
},
|
|
17208
17353
|
"clip": {
|
|
17209
17354
|
"anyOf": [
|
|
17210
17355
|
{
|
|
@@ -18414,6 +18559,13 @@
|
|
|
18414
18559
|
"$ref": "#/definitions/ChannelValue",
|
|
18415
18560
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
18416
18561
|
},
|
|
18562
|
+
"channels": {
|
|
18563
|
+
"additionalProperties": {
|
|
18564
|
+
"type": "string"
|
|
18565
|
+
},
|
|
18566
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
18567
|
+
"type": "object"
|
|
18568
|
+
},
|
|
18417
18569
|
"clip": {
|
|
18418
18570
|
"anyOf": [
|
|
18419
18571
|
{
|
|
@@ -19599,21 +19751,39 @@
|
|
|
19599
19751
|
"centroid": {
|
|
19600
19752
|
"anyOf": [
|
|
19601
19753
|
{
|
|
19602
|
-
"
|
|
19603
|
-
|
|
19604
|
-
|
|
19605
|
-
|
|
19606
|
-
|
|
19607
|
-
|
|
19754
|
+
"anyOf": [
|
|
19755
|
+
{
|
|
19756
|
+
"type": "string"
|
|
19757
|
+
},
|
|
19758
|
+
{
|
|
19759
|
+
"type": "number"
|
|
19760
|
+
},
|
|
19761
|
+
{
|
|
19762
|
+
"type": "boolean"
|
|
19763
|
+
},
|
|
19764
|
+
{
|
|
19765
|
+
"$ref": "#/definitions/ParamRef"
|
|
19766
|
+
}
|
|
19767
|
+
],
|
|
19768
|
+
"description": "A transform argument."
|
|
19608
19769
|
},
|
|
19609
19770
|
{
|
|
19610
19771
|
"items": {
|
|
19611
|
-
"
|
|
19612
|
-
|
|
19613
|
-
|
|
19614
|
-
|
|
19615
|
-
|
|
19616
|
-
|
|
19772
|
+
"anyOf": [
|
|
19773
|
+
{
|
|
19774
|
+
"type": "string"
|
|
19775
|
+
},
|
|
19776
|
+
{
|
|
19777
|
+
"type": "number"
|
|
19778
|
+
},
|
|
19779
|
+
{
|
|
19780
|
+
"type": "boolean"
|
|
19781
|
+
},
|
|
19782
|
+
{
|
|
19783
|
+
"$ref": "#/definitions/ParamRef"
|
|
19784
|
+
}
|
|
19785
|
+
],
|
|
19786
|
+
"description": "A transform argument."
|
|
19617
19787
|
},
|
|
19618
19788
|
"maxItems": 1,
|
|
19619
19789
|
"minItems": 1,
|
|
@@ -19634,21 +19804,39 @@
|
|
|
19634
19804
|
"centroidX": {
|
|
19635
19805
|
"anyOf": [
|
|
19636
19806
|
{
|
|
19637
|
-
"
|
|
19638
|
-
|
|
19639
|
-
|
|
19640
|
-
|
|
19641
|
-
|
|
19642
|
-
|
|
19807
|
+
"anyOf": [
|
|
19808
|
+
{
|
|
19809
|
+
"type": "string"
|
|
19810
|
+
},
|
|
19811
|
+
{
|
|
19812
|
+
"type": "number"
|
|
19813
|
+
},
|
|
19814
|
+
{
|
|
19815
|
+
"type": "boolean"
|
|
19816
|
+
},
|
|
19817
|
+
{
|
|
19818
|
+
"$ref": "#/definitions/ParamRef"
|
|
19819
|
+
}
|
|
19820
|
+
],
|
|
19821
|
+
"description": "A transform argument."
|
|
19643
19822
|
},
|
|
19644
19823
|
{
|
|
19645
19824
|
"items": {
|
|
19646
|
-
"
|
|
19647
|
-
|
|
19648
|
-
|
|
19649
|
-
|
|
19650
|
-
|
|
19651
|
-
|
|
19825
|
+
"anyOf": [
|
|
19826
|
+
{
|
|
19827
|
+
"type": "string"
|
|
19828
|
+
},
|
|
19829
|
+
{
|
|
19830
|
+
"type": "number"
|
|
19831
|
+
},
|
|
19832
|
+
{
|
|
19833
|
+
"type": "boolean"
|
|
19834
|
+
},
|
|
19835
|
+
{
|
|
19836
|
+
"$ref": "#/definitions/ParamRef"
|
|
19837
|
+
}
|
|
19838
|
+
],
|
|
19839
|
+
"description": "A transform argument."
|
|
19652
19840
|
},
|
|
19653
19841
|
"maxItems": 1,
|
|
19654
19842
|
"minItems": 1,
|
|
@@ -19669,21 +19857,39 @@
|
|
|
19669
19857
|
"centroidY": {
|
|
19670
19858
|
"anyOf": [
|
|
19671
19859
|
{
|
|
19672
|
-
"
|
|
19673
|
-
|
|
19674
|
-
|
|
19675
|
-
|
|
19676
|
-
|
|
19677
|
-
|
|
19860
|
+
"anyOf": [
|
|
19861
|
+
{
|
|
19862
|
+
"type": "string"
|
|
19863
|
+
},
|
|
19864
|
+
{
|
|
19865
|
+
"type": "number"
|
|
19866
|
+
},
|
|
19867
|
+
{
|
|
19868
|
+
"type": "boolean"
|
|
19869
|
+
},
|
|
19870
|
+
{
|
|
19871
|
+
"$ref": "#/definitions/ParamRef"
|
|
19872
|
+
}
|
|
19873
|
+
],
|
|
19874
|
+
"description": "A transform argument."
|
|
19678
19875
|
},
|
|
19679
19876
|
{
|
|
19680
19877
|
"items": {
|
|
19681
|
-
"
|
|
19682
|
-
|
|
19683
|
-
|
|
19684
|
-
|
|
19685
|
-
|
|
19686
|
-
|
|
19878
|
+
"anyOf": [
|
|
19879
|
+
{
|
|
19880
|
+
"type": "string"
|
|
19881
|
+
},
|
|
19882
|
+
{
|
|
19883
|
+
"type": "number"
|
|
19884
|
+
},
|
|
19885
|
+
{
|
|
19886
|
+
"type": "boolean"
|
|
19887
|
+
},
|
|
19888
|
+
{
|
|
19889
|
+
"$ref": "#/definitions/ParamRef"
|
|
19890
|
+
}
|
|
19891
|
+
],
|
|
19892
|
+
"description": "A transform argument."
|
|
19687
19893
|
},
|
|
19688
19894
|
"maxItems": 1,
|
|
19689
19895
|
"minItems": 1,
|
|
@@ -20170,6 +20376,13 @@
|
|
|
20170
20376
|
"$ref": "#/definitions/ChannelValue",
|
|
20171
20377
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
20172
20378
|
},
|
|
20379
|
+
"channels": {
|
|
20380
|
+
"additionalProperties": {
|
|
20381
|
+
"type": "string"
|
|
20382
|
+
},
|
|
20383
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
20384
|
+
"type": "object"
|
|
20385
|
+
},
|
|
20173
20386
|
"clip": {
|
|
20174
20387
|
"anyOf": [
|
|
20175
20388
|
{
|
|
@@ -21617,11 +21830,67 @@
|
|
|
21617
21830
|
],
|
|
21618
21831
|
"description": "The built-in color schemes. For categorical data, one of:\n\n- *Accent* - eight colors\n- *Category10* - ten colors\n- *Dark2* - eight colors\n- *Observable10* (default) - ten colors\n- *Paired* - twelve paired colors\n- *Pastel1* - nine colors\n- *Pastel2* - eight colors\n- *Set1* - nine colors\n- *Set2* - eight colors\n- *Set3* - twelve colors\n- *Tableau10* - ten colors\n\nFor diverging data, one of:\n\n- *BrBG* - from brown to white to blue-green\n- *PRGn* - from purple to white to green\n- *PiYG* - from pink to white to yellow-green\n- *PuOr* - from purple to white to orange\n- *RdBu* (default) - from red to white to blue\n- *RdGy* - from red to white to gray\n- *RdYlBu* - from red to yellow to blue\n- *RdYlGn* - from red to yellow to green\n- *Spectral* - from red to blue, through the spectrum\n- *BuRd* - from blue to white to red\n- *BuYlRd* - from blue to yellow to red\n\nFor sequential data, one of:\n\n- *Blues* - from white to blue\n- *Greens* - from white to green\n- *Greys* - from white to gray\n- *Oranges* - from white to orange\n- *Purples* - from white to purple\n- *Reds* - from white to red\n- *Turbo* (default) - from blue to red, through the spectrum\n- *Viridis* - from blue to green to yellow\n- *Magma* - from purple to orange to yellow\n- *Inferno* - from purple to orange to yellow\n- *Plasma* - from purple to orange to yellow\n- *Cividis* - from blue to yellow\n- *Cubehelix* - from black to white, rotating hue\n- *Warm* - from purple to green, through warm hues\n- *Cool* - from green to to purple, through cool hues\n- *BuGn* - from light blue to dark green\n- *BuPu* - from light blue to dark purple\n- *GnBu* - from light green to dark blue\n- *OrRd* - from light orange to dark red\n- *PuBu* - from light purple to dark blue\n- *PuBuGn* - from light purple to blue to dark green\n- *PuRd* - from light purple to dark red\n- *RdPu* - from light red to dark purple\n- *YlGn* - from light yellow to dark green\n- *YlGnBu* - from light yellow to green to dark blue\n- *YlOrBr* - from light yellow to orange to dark brown\n- *YlOrRd* - from light yellow to orange to dark red\n\nFor cyclical data, one of:\n\n- *Rainbow* (default) - the less-angry rainbow color scheme\n- *Sinebow* - Bumgardner and Loyd’s “sinebow” scheme"
|
|
21619
21832
|
},
|
|
21833
|
+
"Column": {
|
|
21834
|
+
"additionalProperties": false,
|
|
21835
|
+
"properties": {
|
|
21836
|
+
"column": {
|
|
21837
|
+
"anyOf": [
|
|
21838
|
+
{
|
|
21839
|
+
"anyOf": [
|
|
21840
|
+
{
|
|
21841
|
+
"type": "string"
|
|
21842
|
+
},
|
|
21843
|
+
{
|
|
21844
|
+
"type": "number"
|
|
21845
|
+
},
|
|
21846
|
+
{
|
|
21847
|
+
"type": "boolean"
|
|
21848
|
+
},
|
|
21849
|
+
{
|
|
21850
|
+
"$ref": "#/definitions/ParamRef"
|
|
21851
|
+
}
|
|
21852
|
+
],
|
|
21853
|
+
"description": "A transform argument."
|
|
21854
|
+
},
|
|
21855
|
+
{
|
|
21856
|
+
"items": {
|
|
21857
|
+
"anyOf": [
|
|
21858
|
+
{
|
|
21859
|
+
"type": "string"
|
|
21860
|
+
},
|
|
21861
|
+
{
|
|
21862
|
+
"type": "number"
|
|
21863
|
+
},
|
|
21864
|
+
{
|
|
21865
|
+
"type": "boolean"
|
|
21866
|
+
},
|
|
21867
|
+
{
|
|
21868
|
+
"$ref": "#/definitions/ParamRef"
|
|
21869
|
+
}
|
|
21870
|
+
],
|
|
21871
|
+
"description": "A transform argument."
|
|
21872
|
+
},
|
|
21873
|
+
"maxItems": 1,
|
|
21874
|
+
"minItems": 1,
|
|
21875
|
+
"type": "array"
|
|
21876
|
+
}
|
|
21877
|
+
],
|
|
21878
|
+
"description": "Intpret a string or param-value as a column reference."
|
|
21879
|
+
}
|
|
21880
|
+
},
|
|
21881
|
+
"required": [
|
|
21882
|
+
"column"
|
|
21883
|
+
],
|
|
21884
|
+
"type": "object"
|
|
21885
|
+
},
|
|
21620
21886
|
"ColumnTransform": {
|
|
21621
21887
|
"anyOf": [
|
|
21622
21888
|
{
|
|
21623
21889
|
"$ref": "#/definitions/Bin"
|
|
21624
21890
|
},
|
|
21891
|
+
{
|
|
21892
|
+
"$ref": "#/definitions/Column"
|
|
21893
|
+
},
|
|
21625
21894
|
{
|
|
21626
21895
|
"$ref": "#/definitions/DateMonth"
|
|
21627
21896
|
},
|
|
@@ -21758,6 +22027,13 @@
|
|
|
21758
22027
|
],
|
|
21759
22028
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
21760
22029
|
},
|
|
22030
|
+
"channels": {
|
|
22031
|
+
"additionalProperties": {
|
|
22032
|
+
"type": "string"
|
|
22033
|
+
},
|
|
22034
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
22035
|
+
"type": "object"
|
|
22036
|
+
},
|
|
21761
22037
|
"clip": {
|
|
21762
22038
|
"anyOf": [
|
|
21763
22039
|
{
|
|
@@ -22950,21 +23226,39 @@
|
|
|
22950
23226
|
{
|
|
22951
23227
|
"anyOf": [
|
|
22952
23228
|
{
|
|
22953
|
-
"
|
|
22954
|
-
|
|
22955
|
-
|
|
22956
|
-
|
|
22957
|
-
|
|
22958
|
-
|
|
23229
|
+
"anyOf": [
|
|
23230
|
+
{
|
|
23231
|
+
"type": "string"
|
|
23232
|
+
},
|
|
23233
|
+
{
|
|
23234
|
+
"type": "number"
|
|
23235
|
+
},
|
|
23236
|
+
{
|
|
23237
|
+
"type": "boolean"
|
|
23238
|
+
},
|
|
23239
|
+
{
|
|
23240
|
+
"$ref": "#/definitions/ParamRef"
|
|
23241
|
+
}
|
|
23242
|
+
],
|
|
23243
|
+
"description": "A transform argument."
|
|
22959
23244
|
},
|
|
22960
23245
|
{
|
|
22961
23246
|
"items": {
|
|
22962
|
-
"
|
|
22963
|
-
|
|
22964
|
-
|
|
22965
|
-
|
|
22966
|
-
|
|
22967
|
-
|
|
23247
|
+
"anyOf": [
|
|
23248
|
+
{
|
|
23249
|
+
"type": "string"
|
|
23250
|
+
},
|
|
23251
|
+
{
|
|
23252
|
+
"type": "number"
|
|
23253
|
+
},
|
|
23254
|
+
{
|
|
23255
|
+
"type": "boolean"
|
|
23256
|
+
},
|
|
23257
|
+
{
|
|
23258
|
+
"$ref": "#/definitions/ParamRef"
|
|
23259
|
+
}
|
|
23260
|
+
],
|
|
23261
|
+
"description": "A transform argument."
|
|
22968
23262
|
},
|
|
22969
23263
|
"maxItems": 1,
|
|
22970
23264
|
"minItems": 1,
|
|
@@ -23587,21 +23881,39 @@
|
|
|
23587
23881
|
"dateDay": {
|
|
23588
23882
|
"anyOf": [
|
|
23589
23883
|
{
|
|
23590
|
-
"
|
|
23591
|
-
|
|
23592
|
-
|
|
23593
|
-
|
|
23594
|
-
|
|
23595
|
-
|
|
23884
|
+
"anyOf": [
|
|
23885
|
+
{
|
|
23886
|
+
"type": "string"
|
|
23887
|
+
},
|
|
23888
|
+
{
|
|
23889
|
+
"type": "number"
|
|
23890
|
+
},
|
|
23891
|
+
{
|
|
23892
|
+
"type": "boolean"
|
|
23893
|
+
},
|
|
23894
|
+
{
|
|
23895
|
+
"$ref": "#/definitions/ParamRef"
|
|
23896
|
+
}
|
|
23897
|
+
],
|
|
23898
|
+
"description": "A transform argument."
|
|
23596
23899
|
},
|
|
23597
23900
|
{
|
|
23598
23901
|
"items": {
|
|
23599
|
-
"
|
|
23600
|
-
|
|
23601
|
-
|
|
23602
|
-
|
|
23603
|
-
|
|
23604
|
-
|
|
23902
|
+
"anyOf": [
|
|
23903
|
+
{
|
|
23904
|
+
"type": "string"
|
|
23905
|
+
},
|
|
23906
|
+
{
|
|
23907
|
+
"type": "number"
|
|
23908
|
+
},
|
|
23909
|
+
{
|
|
23910
|
+
"type": "boolean"
|
|
23911
|
+
},
|
|
23912
|
+
{
|
|
23913
|
+
"$ref": "#/definitions/ParamRef"
|
|
23914
|
+
}
|
|
23915
|
+
],
|
|
23916
|
+
"description": "A transform argument."
|
|
23605
23917
|
},
|
|
23606
23918
|
"maxItems": 1,
|
|
23607
23919
|
"minItems": 1,
|
|
@@ -23622,21 +23934,39 @@
|
|
|
23622
23934
|
"dateMonth": {
|
|
23623
23935
|
"anyOf": [
|
|
23624
23936
|
{
|
|
23625
|
-
"
|
|
23626
|
-
|
|
23627
|
-
|
|
23628
|
-
|
|
23629
|
-
|
|
23630
|
-
|
|
23937
|
+
"anyOf": [
|
|
23938
|
+
{
|
|
23939
|
+
"type": "string"
|
|
23940
|
+
},
|
|
23941
|
+
{
|
|
23942
|
+
"type": "number"
|
|
23943
|
+
},
|
|
23944
|
+
{
|
|
23945
|
+
"type": "boolean"
|
|
23946
|
+
},
|
|
23947
|
+
{
|
|
23948
|
+
"$ref": "#/definitions/ParamRef"
|
|
23949
|
+
}
|
|
23950
|
+
],
|
|
23951
|
+
"description": "A transform argument."
|
|
23631
23952
|
},
|
|
23632
23953
|
{
|
|
23633
23954
|
"items": {
|
|
23634
|
-
"
|
|
23635
|
-
|
|
23636
|
-
|
|
23637
|
-
|
|
23638
|
-
|
|
23639
|
-
|
|
23955
|
+
"anyOf": [
|
|
23956
|
+
{
|
|
23957
|
+
"type": "string"
|
|
23958
|
+
},
|
|
23959
|
+
{
|
|
23960
|
+
"type": "number"
|
|
23961
|
+
},
|
|
23962
|
+
{
|
|
23963
|
+
"type": "boolean"
|
|
23964
|
+
},
|
|
23965
|
+
{
|
|
23966
|
+
"$ref": "#/definitions/ParamRef"
|
|
23967
|
+
}
|
|
23968
|
+
],
|
|
23969
|
+
"description": "A transform argument."
|
|
23640
23970
|
},
|
|
23641
23971
|
"maxItems": 1,
|
|
23642
23972
|
"minItems": 1,
|
|
@@ -23657,21 +23987,39 @@
|
|
|
23657
23987
|
"dateMonthDay": {
|
|
23658
23988
|
"anyOf": [
|
|
23659
23989
|
{
|
|
23660
|
-
"
|
|
23661
|
-
|
|
23662
|
-
|
|
23663
|
-
|
|
23664
|
-
|
|
23665
|
-
|
|
23990
|
+
"anyOf": [
|
|
23991
|
+
{
|
|
23992
|
+
"type": "string"
|
|
23993
|
+
},
|
|
23994
|
+
{
|
|
23995
|
+
"type": "number"
|
|
23996
|
+
},
|
|
23997
|
+
{
|
|
23998
|
+
"type": "boolean"
|
|
23999
|
+
},
|
|
24000
|
+
{
|
|
24001
|
+
"$ref": "#/definitions/ParamRef"
|
|
24002
|
+
}
|
|
24003
|
+
],
|
|
24004
|
+
"description": "A transform argument."
|
|
23666
24005
|
},
|
|
23667
24006
|
{
|
|
23668
24007
|
"items": {
|
|
23669
|
-
"
|
|
23670
|
-
|
|
23671
|
-
|
|
23672
|
-
|
|
23673
|
-
|
|
23674
|
-
|
|
24008
|
+
"anyOf": [
|
|
24009
|
+
{
|
|
24010
|
+
"type": "string"
|
|
24011
|
+
},
|
|
24012
|
+
{
|
|
24013
|
+
"type": "number"
|
|
24014
|
+
},
|
|
24015
|
+
{
|
|
24016
|
+
"type": "boolean"
|
|
24017
|
+
},
|
|
24018
|
+
{
|
|
24019
|
+
"$ref": "#/definitions/ParamRef"
|
|
24020
|
+
}
|
|
24021
|
+
],
|
|
24022
|
+
"description": "A transform argument."
|
|
23675
24023
|
},
|
|
23676
24024
|
"maxItems": 1,
|
|
23677
24025
|
"minItems": 1,
|
|
@@ -23716,6 +24064,13 @@
|
|
|
23716
24064
|
"$ref": "#/definitions/ChannelValue",
|
|
23717
24065
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
23718
24066
|
},
|
|
24067
|
+
"channels": {
|
|
24068
|
+
"additionalProperties": {
|
|
24069
|
+
"type": "string"
|
|
24070
|
+
},
|
|
24071
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
24072
|
+
"type": "object"
|
|
24073
|
+
},
|
|
23719
24074
|
"clip": {
|
|
23720
24075
|
"anyOf": [
|
|
23721
24076
|
{
|
|
@@ -24952,6 +25307,13 @@
|
|
|
24952
25307
|
"$ref": "#/definitions/ChannelValue",
|
|
24953
25308
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
24954
25309
|
},
|
|
25310
|
+
"channels": {
|
|
25311
|
+
"additionalProperties": {
|
|
25312
|
+
"type": "string"
|
|
25313
|
+
},
|
|
25314
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
25315
|
+
"type": "object"
|
|
25316
|
+
},
|
|
24955
25317
|
"clip": {
|
|
24956
25318
|
"anyOf": [
|
|
24957
25319
|
{
|
|
@@ -26199,6 +26561,13 @@
|
|
|
26199
26561
|
],
|
|
26200
26562
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
26201
26563
|
},
|
|
26564
|
+
"channels": {
|
|
26565
|
+
"additionalProperties": {
|
|
26566
|
+
"type": "string"
|
|
26567
|
+
},
|
|
26568
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
26569
|
+
"type": "object"
|
|
26570
|
+
},
|
|
26202
26571
|
"clip": {
|
|
26203
26572
|
"anyOf": [
|
|
26204
26573
|
{
|
|
@@ -27500,6 +27869,13 @@
|
|
|
27500
27869
|
],
|
|
27501
27870
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
27502
27871
|
},
|
|
27872
|
+
"channels": {
|
|
27873
|
+
"additionalProperties": {
|
|
27874
|
+
"type": "string"
|
|
27875
|
+
},
|
|
27876
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
27877
|
+
"type": "object"
|
|
27878
|
+
},
|
|
27503
27879
|
"clip": {
|
|
27504
27880
|
"anyOf": [
|
|
27505
27881
|
{
|
|
@@ -28942,6 +29318,13 @@
|
|
|
28942
29318
|
],
|
|
28943
29319
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
28944
29320
|
},
|
|
29321
|
+
"channels": {
|
|
29322
|
+
"additionalProperties": {
|
|
29323
|
+
"type": "string"
|
|
29324
|
+
},
|
|
29325
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
29326
|
+
"type": "object"
|
|
29327
|
+
},
|
|
28945
29328
|
"clip": {
|
|
28946
29329
|
"anyOf": [
|
|
28947
29330
|
{
|
|
@@ -30145,6 +30528,13 @@
|
|
|
30145
30528
|
],
|
|
30146
30529
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
30147
30530
|
},
|
|
30531
|
+
"channels": {
|
|
30532
|
+
"additionalProperties": {
|
|
30533
|
+
"type": "string"
|
|
30534
|
+
},
|
|
30535
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
30536
|
+
"type": "object"
|
|
30537
|
+
},
|
|
30148
30538
|
"clip": {
|
|
30149
30539
|
"anyOf": [
|
|
30150
30540
|
{
|
|
@@ -31408,6 +31798,13 @@
|
|
|
31408
31798
|
],
|
|
31409
31799
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
31410
31800
|
},
|
|
31801
|
+
"channels": {
|
|
31802
|
+
"additionalProperties": {
|
|
31803
|
+
"type": "string"
|
|
31804
|
+
},
|
|
31805
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
31806
|
+
"type": "object"
|
|
31807
|
+
},
|
|
31411
31808
|
"clip": {
|
|
31412
31809
|
"anyOf": [
|
|
31413
31810
|
{
|
|
@@ -32614,6 +33011,13 @@
|
|
|
32614
33011
|
],
|
|
32615
33012
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
32616
33013
|
},
|
|
33014
|
+
"channels": {
|
|
33015
|
+
"additionalProperties": {
|
|
33016
|
+
"type": "string"
|
|
33017
|
+
},
|
|
33018
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
33019
|
+
"type": "object"
|
|
33020
|
+
},
|
|
32617
33021
|
"clip": {
|
|
32618
33022
|
"anyOf": [
|
|
32619
33023
|
{
|
|
@@ -33968,6 +34372,13 @@
|
|
|
33968
34372
|
],
|
|
33969
34373
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
33970
34374
|
},
|
|
34375
|
+
"channels": {
|
|
34376
|
+
"additionalProperties": {
|
|
34377
|
+
"type": "string"
|
|
34378
|
+
},
|
|
34379
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
34380
|
+
"type": "object"
|
|
34381
|
+
},
|
|
33971
34382
|
"clip": {
|
|
33972
34383
|
"anyOf": [
|
|
33973
34384
|
{
|
|
@@ -35170,6 +35581,13 @@
|
|
|
35170
35581
|
],
|
|
35171
35582
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
35172
35583
|
},
|
|
35584
|
+
"channels": {
|
|
35585
|
+
"additionalProperties": {
|
|
35586
|
+
"type": "string"
|
|
35587
|
+
},
|
|
35588
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
35589
|
+
"type": "object"
|
|
35590
|
+
},
|
|
35173
35591
|
"clip": {
|
|
35174
35592
|
"anyOf": [
|
|
35175
35593
|
{
|
|
@@ -36433,6 +36851,13 @@
|
|
|
36433
36851
|
],
|
|
36434
36852
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
36435
36853
|
},
|
|
36854
|
+
"channels": {
|
|
36855
|
+
"additionalProperties": {
|
|
36856
|
+
"type": "string"
|
|
36857
|
+
},
|
|
36858
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
36859
|
+
"type": "object"
|
|
36860
|
+
},
|
|
36436
36861
|
"clip": {
|
|
36437
36862
|
"anyOf": [
|
|
36438
36863
|
{
|
|
@@ -37644,6 +38069,13 @@
|
|
|
37644
38069
|
],
|
|
37645
38070
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
37646
38071
|
},
|
|
38072
|
+
"channels": {
|
|
38073
|
+
"additionalProperties": {
|
|
38074
|
+
"type": "string"
|
|
38075
|
+
},
|
|
38076
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
38077
|
+
"type": "object"
|
|
38078
|
+
},
|
|
37647
38079
|
"clip": {
|
|
37648
38080
|
"anyOf": [
|
|
37649
38081
|
{
|
|
@@ -38986,6 +39418,13 @@
|
|
|
38986
39418
|
"$ref": "#/definitions/ChannelValue",
|
|
38987
39419
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
38988
39420
|
},
|
|
39421
|
+
"channels": {
|
|
39422
|
+
"additionalProperties": {
|
|
39423
|
+
"type": "string"
|
|
39424
|
+
},
|
|
39425
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
39426
|
+
"type": "object"
|
|
39427
|
+
},
|
|
38989
39428
|
"clip": {
|
|
38990
39429
|
"anyOf": [
|
|
38991
39430
|
{
|
|
@@ -40169,6 +40608,13 @@
|
|
|
40169
40608
|
"$ref": "#/definitions/ChannelValue",
|
|
40170
40609
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
40171
40610
|
},
|
|
40611
|
+
"channels": {
|
|
40612
|
+
"additionalProperties": {
|
|
40613
|
+
"type": "string"
|
|
40614
|
+
},
|
|
40615
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
40616
|
+
"type": "object"
|
|
40617
|
+
},
|
|
40172
40618
|
"clip": {
|
|
40173
40619
|
"anyOf": [
|
|
40174
40620
|
{
|
|
@@ -41363,6 +41809,13 @@
|
|
|
41363
41809
|
"$ref": "#/definitions/ChannelValue",
|
|
41364
41810
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
41365
41811
|
},
|
|
41812
|
+
"channels": {
|
|
41813
|
+
"additionalProperties": {
|
|
41814
|
+
"type": "string"
|
|
41815
|
+
},
|
|
41816
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
41817
|
+
"type": "object"
|
|
41818
|
+
},
|
|
41366
41819
|
"clip": {
|
|
41367
41820
|
"anyOf": [
|
|
41368
41821
|
{
|
|
@@ -42557,6 +43010,13 @@
|
|
|
42557
43010
|
"$ref": "#/definitions/ChannelValue",
|
|
42558
43011
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
42559
43012
|
},
|
|
43013
|
+
"channels": {
|
|
43014
|
+
"additionalProperties": {
|
|
43015
|
+
"type": "string"
|
|
43016
|
+
},
|
|
43017
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
43018
|
+
"type": "object"
|
|
43019
|
+
},
|
|
42560
43020
|
"ci": {
|
|
42561
43021
|
"anyOf": [
|
|
42562
43022
|
{
|
|
@@ -43783,6 +44243,13 @@
|
|
|
43783
44243
|
"$ref": "#/definitions/ChannelValue",
|
|
43784
44244
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
43785
44245
|
},
|
|
44246
|
+
"channels": {
|
|
44247
|
+
"additionalProperties": {
|
|
44248
|
+
"type": "string"
|
|
44249
|
+
},
|
|
44250
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
44251
|
+
"type": "object"
|
|
44252
|
+
},
|
|
43786
44253
|
"ci": {
|
|
43787
44254
|
"anyOf": [
|
|
43788
44255
|
{
|
|
@@ -44988,21 +45455,39 @@
|
|
|
44988
45455
|
"first": {
|
|
44989
45456
|
"anyOf": [
|
|
44990
45457
|
{
|
|
44991
|
-
"
|
|
44992
|
-
|
|
44993
|
-
|
|
44994
|
-
|
|
44995
|
-
|
|
44996
|
-
|
|
45458
|
+
"anyOf": [
|
|
45459
|
+
{
|
|
45460
|
+
"type": "string"
|
|
45461
|
+
},
|
|
45462
|
+
{
|
|
45463
|
+
"type": "number"
|
|
45464
|
+
},
|
|
45465
|
+
{
|
|
45466
|
+
"type": "boolean"
|
|
45467
|
+
},
|
|
45468
|
+
{
|
|
45469
|
+
"$ref": "#/definitions/ParamRef"
|
|
45470
|
+
}
|
|
45471
|
+
],
|
|
45472
|
+
"description": "A transform argument."
|
|
44997
45473
|
},
|
|
44998
45474
|
{
|
|
44999
45475
|
"items": {
|
|
45000
|
-
"
|
|
45001
|
-
|
|
45002
|
-
|
|
45003
|
-
|
|
45004
|
-
|
|
45005
|
-
|
|
45476
|
+
"anyOf": [
|
|
45477
|
+
{
|
|
45478
|
+
"type": "string"
|
|
45479
|
+
},
|
|
45480
|
+
{
|
|
45481
|
+
"type": "number"
|
|
45482
|
+
},
|
|
45483
|
+
{
|
|
45484
|
+
"type": "boolean"
|
|
45485
|
+
},
|
|
45486
|
+
{
|
|
45487
|
+
"$ref": "#/definitions/ParamRef"
|
|
45488
|
+
}
|
|
45489
|
+
],
|
|
45490
|
+
"description": "A transform argument."
|
|
45006
45491
|
},
|
|
45007
45492
|
"maxItems": 1,
|
|
45008
45493
|
"minItems": 1,
|
|
@@ -45081,21 +45566,39 @@
|
|
|
45081
45566
|
"first_value": {
|
|
45082
45567
|
"anyOf": [
|
|
45083
45568
|
{
|
|
45084
|
-
"
|
|
45085
|
-
|
|
45086
|
-
|
|
45087
|
-
|
|
45088
|
-
|
|
45089
|
-
|
|
45569
|
+
"anyOf": [
|
|
45570
|
+
{
|
|
45571
|
+
"type": "string"
|
|
45572
|
+
},
|
|
45573
|
+
{
|
|
45574
|
+
"type": "number"
|
|
45575
|
+
},
|
|
45576
|
+
{
|
|
45577
|
+
"type": "boolean"
|
|
45578
|
+
},
|
|
45579
|
+
{
|
|
45580
|
+
"$ref": "#/definitions/ParamRef"
|
|
45581
|
+
}
|
|
45582
|
+
],
|
|
45583
|
+
"description": "A transform argument."
|
|
45090
45584
|
},
|
|
45091
45585
|
{
|
|
45092
45586
|
"items": {
|
|
45093
|
-
"
|
|
45094
|
-
|
|
45095
|
-
|
|
45096
|
-
|
|
45097
|
-
|
|
45098
|
-
|
|
45587
|
+
"anyOf": [
|
|
45588
|
+
{
|
|
45589
|
+
"type": "string"
|
|
45590
|
+
},
|
|
45591
|
+
{
|
|
45592
|
+
"type": "number"
|
|
45593
|
+
},
|
|
45594
|
+
{
|
|
45595
|
+
"type": "boolean"
|
|
45596
|
+
},
|
|
45597
|
+
{
|
|
45598
|
+
"$ref": "#/definitions/ParamRef"
|
|
45599
|
+
}
|
|
45600
|
+
],
|
|
45601
|
+
"description": "A transform argument."
|
|
45099
45602
|
},
|
|
45100
45603
|
"maxItems": 1,
|
|
45101
45604
|
"minItems": 1,
|
|
@@ -45230,6 +45733,13 @@
|
|
|
45230
45733
|
"$ref": "#/definitions/ChannelValue",
|
|
45231
45734
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
45232
45735
|
},
|
|
45736
|
+
"channels": {
|
|
45737
|
+
"additionalProperties": {
|
|
45738
|
+
"type": "string"
|
|
45739
|
+
},
|
|
45740
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
45741
|
+
"type": "object"
|
|
45742
|
+
},
|
|
45233
45743
|
"clip": {
|
|
45234
45744
|
"anyOf": [
|
|
45235
45745
|
{
|
|
@@ -46441,6 +46951,13 @@
|
|
|
46441
46951
|
"$ref": "#/definitions/ChannelValue",
|
|
46442
46952
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
46443
46953
|
},
|
|
46954
|
+
"channels": {
|
|
46955
|
+
"additionalProperties": {
|
|
46956
|
+
"type": "string"
|
|
46957
|
+
},
|
|
46958
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
46959
|
+
"type": "object"
|
|
46960
|
+
},
|
|
46444
46961
|
"clip": {
|
|
46445
46962
|
"anyOf": [
|
|
46446
46963
|
{
|
|
@@ -47550,21 +48067,39 @@
|
|
|
47550
48067
|
"geojson": {
|
|
47551
48068
|
"anyOf": [
|
|
47552
48069
|
{
|
|
47553
|
-
"
|
|
47554
|
-
|
|
47555
|
-
|
|
47556
|
-
|
|
47557
|
-
|
|
47558
|
-
|
|
48070
|
+
"anyOf": [
|
|
48071
|
+
{
|
|
48072
|
+
"type": "string"
|
|
48073
|
+
},
|
|
48074
|
+
{
|
|
48075
|
+
"type": "number"
|
|
48076
|
+
},
|
|
48077
|
+
{
|
|
48078
|
+
"type": "boolean"
|
|
48079
|
+
},
|
|
48080
|
+
{
|
|
48081
|
+
"$ref": "#/definitions/ParamRef"
|
|
48082
|
+
}
|
|
48083
|
+
],
|
|
48084
|
+
"description": "A transform argument."
|
|
47559
48085
|
},
|
|
47560
48086
|
{
|
|
47561
48087
|
"items": {
|
|
47562
|
-
"
|
|
47563
|
-
|
|
47564
|
-
|
|
47565
|
-
|
|
47566
|
-
|
|
47567
|
-
|
|
48088
|
+
"anyOf": [
|
|
48089
|
+
{
|
|
48090
|
+
"type": "string"
|
|
48091
|
+
},
|
|
48092
|
+
{
|
|
48093
|
+
"type": "number"
|
|
48094
|
+
},
|
|
48095
|
+
{
|
|
48096
|
+
"type": "boolean"
|
|
48097
|
+
},
|
|
48098
|
+
{
|
|
48099
|
+
"$ref": "#/definitions/ParamRef"
|
|
48100
|
+
}
|
|
48101
|
+
],
|
|
48102
|
+
"description": "A transform argument."
|
|
47568
48103
|
},
|
|
47569
48104
|
"maxItems": 1,
|
|
47570
48105
|
"minItems": 1,
|
|
@@ -47609,6 +48144,13 @@
|
|
|
47609
48144
|
"$ref": "#/definitions/ChannelValue",
|
|
47610
48145
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
47611
48146
|
},
|
|
48147
|
+
"channels": {
|
|
48148
|
+
"additionalProperties": {
|
|
48149
|
+
"type": "string"
|
|
48150
|
+
},
|
|
48151
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
48152
|
+
"type": "object"
|
|
48153
|
+
},
|
|
47612
48154
|
"clip": {
|
|
47613
48155
|
"anyOf": [
|
|
47614
48156
|
{
|
|
@@ -48746,6 +49288,13 @@
|
|
|
48746
49288
|
"$ref": "#/definitions/ChannelValue",
|
|
48747
49289
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
48748
49290
|
},
|
|
49291
|
+
"channels": {
|
|
49292
|
+
"additionalProperties": {
|
|
49293
|
+
"type": "string"
|
|
49294
|
+
},
|
|
49295
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
49296
|
+
"type": "object"
|
|
49297
|
+
},
|
|
48749
49298
|
"clip": {
|
|
48750
49299
|
"anyOf": [
|
|
48751
49300
|
{
|
|
@@ -50067,6 +50616,13 @@
|
|
|
50067
50616
|
"$ref": "#/definitions/ChannelValue",
|
|
50068
50617
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
50069
50618
|
},
|
|
50619
|
+
"channels": {
|
|
50620
|
+
"additionalProperties": {
|
|
50621
|
+
"type": "string"
|
|
50622
|
+
},
|
|
50623
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
50624
|
+
"type": "object"
|
|
50625
|
+
},
|
|
50070
50626
|
"clip": {
|
|
50071
50627
|
"anyOf": [
|
|
50072
50628
|
{
|
|
@@ -51399,6 +51955,13 @@
|
|
|
51399
51955
|
"$ref": "#/definitions/ChannelValue",
|
|
51400
51956
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
51401
51957
|
},
|
|
51958
|
+
"channels": {
|
|
51959
|
+
"additionalProperties": {
|
|
51960
|
+
"type": "string"
|
|
51961
|
+
},
|
|
51962
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
51963
|
+
"type": "object"
|
|
51964
|
+
},
|
|
51402
51965
|
"clip": {
|
|
51403
51966
|
"anyOf": [
|
|
51404
51967
|
{
|
|
@@ -52720,6 +53283,13 @@
|
|
|
52720
53283
|
"$ref": "#/definitions/ChannelValue",
|
|
52721
53284
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
52722
53285
|
},
|
|
53286
|
+
"channels": {
|
|
53287
|
+
"additionalProperties": {
|
|
53288
|
+
"type": "string"
|
|
53289
|
+
},
|
|
53290
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
53291
|
+
"type": "object"
|
|
53292
|
+
},
|
|
52723
53293
|
"clip": {
|
|
52724
53294
|
"anyOf": [
|
|
52725
53295
|
{
|
|
@@ -54062,6 +54632,13 @@
|
|
|
54062
54632
|
],
|
|
54063
54633
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
54064
54634
|
},
|
|
54635
|
+
"channels": {
|
|
54636
|
+
"additionalProperties": {
|
|
54637
|
+
"type": "string"
|
|
54638
|
+
},
|
|
54639
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
54640
|
+
"type": "object"
|
|
54641
|
+
},
|
|
54065
54642
|
"clip": {
|
|
54066
54643
|
"anyOf": [
|
|
54067
54644
|
{
|
|
@@ -55257,6 +55834,13 @@
|
|
|
55257
55834
|
"$ref": "#/definitions/ChannelValue",
|
|
55258
55835
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
55259
55836
|
},
|
|
55837
|
+
"channels": {
|
|
55838
|
+
"additionalProperties": {
|
|
55839
|
+
"type": "string"
|
|
55840
|
+
},
|
|
55841
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
55842
|
+
"type": "object"
|
|
55843
|
+
},
|
|
55260
55844
|
"clip": {
|
|
55261
55845
|
"anyOf": [
|
|
55262
55846
|
{
|
|
@@ -56451,6 +57035,13 @@
|
|
|
56451
57035
|
],
|
|
56452
57036
|
"description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. If also using a hexgrid mark, use matching **binWidth** values."
|
|
56453
57037
|
},
|
|
57038
|
+
"channels": {
|
|
57039
|
+
"additionalProperties": {
|
|
57040
|
+
"type": "string"
|
|
57041
|
+
},
|
|
57042
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
57043
|
+
"type": "object"
|
|
57044
|
+
},
|
|
56454
57045
|
"clip": {
|
|
56455
57046
|
"anyOf": [
|
|
56456
57047
|
{
|
|
@@ -57819,6 +58410,13 @@
|
|
|
57819
58410
|
],
|
|
57820
58411
|
"description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. Should match the **binWidth** of the hexbin mark."
|
|
57821
58412
|
},
|
|
58413
|
+
"channels": {
|
|
58414
|
+
"additionalProperties": {
|
|
58415
|
+
"type": "string"
|
|
58416
|
+
},
|
|
58417
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
58418
|
+
"type": "object"
|
|
58419
|
+
},
|
|
57822
58420
|
"clip": {
|
|
57823
58421
|
"anyOf": [
|
|
57824
58422
|
{
|
|
@@ -58972,6 +59570,13 @@
|
|
|
58972
59570
|
"$ref": "#/definitions/ChannelValue",
|
|
58973
59571
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
58974
59572
|
},
|
|
59573
|
+
"channels": {
|
|
59574
|
+
"additionalProperties": {
|
|
59575
|
+
"type": "string"
|
|
59576
|
+
},
|
|
59577
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
59578
|
+
"type": "object"
|
|
59579
|
+
},
|
|
58975
59580
|
"clip": {
|
|
58976
59581
|
"anyOf": [
|
|
58977
59582
|
{
|
|
@@ -60207,6 +60812,13 @@
|
|
|
60207
60812
|
"$ref": "#/definitions/ChannelValue",
|
|
60208
60813
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
60209
60814
|
},
|
|
60815
|
+
"channels": {
|
|
60816
|
+
"additionalProperties": {
|
|
60817
|
+
"type": "string"
|
|
60818
|
+
},
|
|
60819
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
60820
|
+
"type": "object"
|
|
60821
|
+
},
|
|
60210
60822
|
"clip": {
|
|
60211
60823
|
"anyOf": [
|
|
60212
60824
|
{
|
|
@@ -61434,11 +62046,11 @@
|
|
|
61434
62046
|
"type": "string"
|
|
61435
62047
|
},
|
|
61436
62048
|
"peers": {
|
|
61437
|
-
"description": "A flag indicating if peer (sibling) marks are when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
62049
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
61438
62050
|
"type": "boolean"
|
|
61439
62051
|
},
|
|
61440
62052
|
"pixelSize": {
|
|
61441
|
-
"description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of
|
|
62053
|
+
"description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of pre-aggregated materialized views.",
|
|
61442
62054
|
"type": "number"
|
|
61443
62055
|
},
|
|
61444
62056
|
"select": {
|
|
@@ -61466,11 +62078,11 @@
|
|
|
61466
62078
|
"description": "CSS styles for the brush (SVG `rect`) element."
|
|
61467
62079
|
},
|
|
61468
62080
|
"peers": {
|
|
61469
|
-
"description": "A flag indicating if peer (sibling) marks are when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
62081
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
61470
62082
|
"type": "boolean"
|
|
61471
62083
|
},
|
|
61472
62084
|
"pixelSize": {
|
|
61473
|
-
"description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of
|
|
62085
|
+
"description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of pre-aggregated materialized views.",
|
|
61474
62086
|
"type": "number"
|
|
61475
62087
|
},
|
|
61476
62088
|
"select": {
|
|
@@ -61510,11 +62122,11 @@
|
|
|
61510
62122
|
"type": "string"
|
|
61511
62123
|
},
|
|
61512
62124
|
"peers": {
|
|
61513
|
-
"description": "A flag indicating if peer (sibling) marks are when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
62125
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
61514
62126
|
"type": "boolean"
|
|
61515
62127
|
},
|
|
61516
62128
|
"pixelSize": {
|
|
61517
|
-
"description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of
|
|
62129
|
+
"description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of pre-aggregated materialized views.",
|
|
61518
62130
|
"type": "number"
|
|
61519
62131
|
},
|
|
61520
62132
|
"select": {
|
|
@@ -61553,21 +62165,39 @@
|
|
|
61553
62165
|
"lag": {
|
|
61554
62166
|
"anyOf": [
|
|
61555
62167
|
{
|
|
61556
|
-
"
|
|
61557
|
-
|
|
61558
|
-
|
|
61559
|
-
|
|
61560
|
-
|
|
61561
|
-
|
|
62168
|
+
"anyOf": [
|
|
62169
|
+
{
|
|
62170
|
+
"type": "string"
|
|
62171
|
+
},
|
|
62172
|
+
{
|
|
62173
|
+
"type": "number"
|
|
62174
|
+
},
|
|
62175
|
+
{
|
|
62176
|
+
"type": "boolean"
|
|
62177
|
+
},
|
|
62178
|
+
{
|
|
62179
|
+
"$ref": "#/definitions/ParamRef"
|
|
62180
|
+
}
|
|
62181
|
+
],
|
|
62182
|
+
"description": "A transform argument."
|
|
61562
62183
|
},
|
|
61563
62184
|
{
|
|
61564
62185
|
"items": {
|
|
61565
|
-
"
|
|
61566
|
-
|
|
61567
|
-
|
|
61568
|
-
|
|
61569
|
-
|
|
61570
|
-
|
|
62186
|
+
"anyOf": [
|
|
62187
|
+
{
|
|
62188
|
+
"type": "string"
|
|
62189
|
+
},
|
|
62190
|
+
{
|
|
62191
|
+
"type": "number"
|
|
62192
|
+
},
|
|
62193
|
+
{
|
|
62194
|
+
"type": "boolean"
|
|
62195
|
+
},
|
|
62196
|
+
{
|
|
62197
|
+
"$ref": "#/definitions/ParamRef"
|
|
62198
|
+
}
|
|
62199
|
+
],
|
|
62200
|
+
"description": "A transform argument."
|
|
61571
62201
|
},
|
|
61572
62202
|
"maxItems": 3,
|
|
61573
62203
|
"minItems": 1,
|
|
@@ -61649,21 +62279,39 @@
|
|
|
61649
62279
|
"last": {
|
|
61650
62280
|
"anyOf": [
|
|
61651
62281
|
{
|
|
61652
|
-
"
|
|
61653
|
-
|
|
61654
|
-
|
|
61655
|
-
|
|
61656
|
-
|
|
61657
|
-
|
|
62282
|
+
"anyOf": [
|
|
62283
|
+
{
|
|
62284
|
+
"type": "string"
|
|
62285
|
+
},
|
|
62286
|
+
{
|
|
62287
|
+
"type": "number"
|
|
62288
|
+
},
|
|
62289
|
+
{
|
|
62290
|
+
"type": "boolean"
|
|
62291
|
+
},
|
|
62292
|
+
{
|
|
62293
|
+
"$ref": "#/definitions/ParamRef"
|
|
62294
|
+
}
|
|
62295
|
+
],
|
|
62296
|
+
"description": "A transform argument."
|
|
61658
62297
|
},
|
|
61659
62298
|
{
|
|
61660
62299
|
"items": {
|
|
61661
|
-
"
|
|
61662
|
-
|
|
61663
|
-
|
|
61664
|
-
|
|
61665
|
-
|
|
61666
|
-
|
|
62300
|
+
"anyOf": [
|
|
62301
|
+
{
|
|
62302
|
+
"type": "string"
|
|
62303
|
+
},
|
|
62304
|
+
{
|
|
62305
|
+
"type": "number"
|
|
62306
|
+
},
|
|
62307
|
+
{
|
|
62308
|
+
"type": "boolean"
|
|
62309
|
+
},
|
|
62310
|
+
{
|
|
62311
|
+
"$ref": "#/definitions/ParamRef"
|
|
62312
|
+
}
|
|
62313
|
+
],
|
|
62314
|
+
"description": "A transform argument."
|
|
61667
62315
|
},
|
|
61668
62316
|
"maxItems": 1,
|
|
61669
62317
|
"minItems": 1,
|
|
@@ -61742,21 +62390,39 @@
|
|
|
61742
62390
|
"last_value": {
|
|
61743
62391
|
"anyOf": [
|
|
61744
62392
|
{
|
|
61745
|
-
"
|
|
61746
|
-
|
|
61747
|
-
|
|
61748
|
-
|
|
61749
|
-
|
|
61750
|
-
|
|
62393
|
+
"anyOf": [
|
|
62394
|
+
{
|
|
62395
|
+
"type": "string"
|
|
62396
|
+
},
|
|
62397
|
+
{
|
|
62398
|
+
"type": "number"
|
|
62399
|
+
},
|
|
62400
|
+
{
|
|
62401
|
+
"type": "boolean"
|
|
62402
|
+
},
|
|
62403
|
+
{
|
|
62404
|
+
"$ref": "#/definitions/ParamRef"
|
|
62405
|
+
}
|
|
62406
|
+
],
|
|
62407
|
+
"description": "A transform argument."
|
|
61751
62408
|
},
|
|
61752
62409
|
{
|
|
61753
62410
|
"items": {
|
|
61754
|
-
"
|
|
61755
|
-
|
|
61756
|
-
|
|
61757
|
-
|
|
61758
|
-
|
|
61759
|
-
|
|
62411
|
+
"anyOf": [
|
|
62412
|
+
{
|
|
62413
|
+
"type": "string"
|
|
62414
|
+
},
|
|
62415
|
+
{
|
|
62416
|
+
"type": "number"
|
|
62417
|
+
},
|
|
62418
|
+
{
|
|
62419
|
+
"type": "boolean"
|
|
62420
|
+
},
|
|
62421
|
+
{
|
|
62422
|
+
"$ref": "#/definitions/ParamRef"
|
|
62423
|
+
}
|
|
62424
|
+
],
|
|
62425
|
+
"description": "A transform argument."
|
|
61760
62426
|
},
|
|
61761
62427
|
"maxItems": 1,
|
|
61762
62428
|
"minItems": 1,
|
|
@@ -61835,21 +62501,39 @@
|
|
|
61835
62501
|
"lag": {
|
|
61836
62502
|
"anyOf": [
|
|
61837
62503
|
{
|
|
61838
|
-
"
|
|
61839
|
-
|
|
61840
|
-
|
|
61841
|
-
|
|
61842
|
-
|
|
61843
|
-
|
|
62504
|
+
"anyOf": [
|
|
62505
|
+
{
|
|
62506
|
+
"type": "string"
|
|
62507
|
+
},
|
|
62508
|
+
{
|
|
62509
|
+
"type": "number"
|
|
62510
|
+
},
|
|
62511
|
+
{
|
|
62512
|
+
"type": "boolean"
|
|
62513
|
+
},
|
|
62514
|
+
{
|
|
62515
|
+
"$ref": "#/definitions/ParamRef"
|
|
62516
|
+
}
|
|
62517
|
+
],
|
|
62518
|
+
"description": "A transform argument."
|
|
61844
62519
|
},
|
|
61845
62520
|
{
|
|
61846
62521
|
"items": {
|
|
61847
|
-
"
|
|
61848
|
-
|
|
61849
|
-
|
|
61850
|
-
|
|
61851
|
-
|
|
61852
|
-
|
|
62522
|
+
"anyOf": [
|
|
62523
|
+
{
|
|
62524
|
+
"type": "string"
|
|
62525
|
+
},
|
|
62526
|
+
{
|
|
62527
|
+
"type": "number"
|
|
62528
|
+
},
|
|
62529
|
+
{
|
|
62530
|
+
"type": "boolean"
|
|
62531
|
+
},
|
|
62532
|
+
{
|
|
62533
|
+
"$ref": "#/definitions/ParamRef"
|
|
62534
|
+
}
|
|
62535
|
+
],
|
|
62536
|
+
"description": "A transform argument."
|
|
61853
62537
|
},
|
|
61854
62538
|
"maxItems": 3,
|
|
61855
62539
|
"minItems": 1,
|
|
@@ -62020,6 +62704,13 @@
|
|
|
62020
62704
|
"$ref": "#/definitions/ChannelValue",
|
|
62021
62705
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
62022
62706
|
},
|
|
62707
|
+
"channels": {
|
|
62708
|
+
"additionalProperties": {
|
|
62709
|
+
"type": "string"
|
|
62710
|
+
},
|
|
62711
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
62712
|
+
"type": "object"
|
|
62713
|
+
},
|
|
62023
62714
|
"clip": {
|
|
62024
62715
|
"anyOf": [
|
|
62025
62716
|
{
|
|
@@ -63260,6 +63951,13 @@
|
|
|
63260
63951
|
"$ref": "#/definitions/ChannelValue",
|
|
63261
63952
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
63262
63953
|
},
|
|
63954
|
+
"channels": {
|
|
63955
|
+
"additionalProperties": {
|
|
63956
|
+
"type": "string"
|
|
63957
|
+
},
|
|
63958
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
63959
|
+
"type": "object"
|
|
63960
|
+
},
|
|
63263
63961
|
"clip": {
|
|
63264
63962
|
"anyOf": [
|
|
63265
63963
|
{
|
|
@@ -64500,6 +65198,13 @@
|
|
|
64500
65198
|
"$ref": "#/definitions/ChannelValue",
|
|
64501
65199
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
64502
65200
|
},
|
|
65201
|
+
"channels": {
|
|
65202
|
+
"additionalProperties": {
|
|
65203
|
+
"type": "string"
|
|
65204
|
+
},
|
|
65205
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
65206
|
+
"type": "object"
|
|
65207
|
+
},
|
|
64503
65208
|
"clip": {
|
|
64504
65209
|
"anyOf": [
|
|
64505
65210
|
{
|
|
@@ -65740,6 +66445,13 @@
|
|
|
65740
66445
|
"$ref": "#/definitions/ChannelValue",
|
|
65741
66446
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
65742
66447
|
},
|
|
66448
|
+
"channels": {
|
|
66449
|
+
"additionalProperties": {
|
|
66450
|
+
"type": "string"
|
|
66451
|
+
},
|
|
66452
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
66453
|
+
"type": "object"
|
|
66454
|
+
},
|
|
65743
66455
|
"clip": {
|
|
65744
66456
|
"anyOf": [
|
|
65745
66457
|
{
|
|
@@ -67076,21 +67788,39 @@
|
|
|
67076
67788
|
"max": {
|
|
67077
67789
|
"anyOf": [
|
|
67078
67790
|
{
|
|
67079
|
-
"
|
|
67080
|
-
|
|
67081
|
-
|
|
67082
|
-
|
|
67083
|
-
|
|
67084
|
-
|
|
67791
|
+
"anyOf": [
|
|
67792
|
+
{
|
|
67793
|
+
"type": "string"
|
|
67794
|
+
},
|
|
67795
|
+
{
|
|
67796
|
+
"type": "number"
|
|
67797
|
+
},
|
|
67798
|
+
{
|
|
67799
|
+
"type": "boolean"
|
|
67800
|
+
},
|
|
67801
|
+
{
|
|
67802
|
+
"$ref": "#/definitions/ParamRef"
|
|
67803
|
+
}
|
|
67804
|
+
],
|
|
67805
|
+
"description": "A transform argument."
|
|
67085
67806
|
},
|
|
67086
67807
|
{
|
|
67087
67808
|
"items": {
|
|
67088
|
-
"
|
|
67089
|
-
|
|
67090
|
-
|
|
67091
|
-
|
|
67092
|
-
|
|
67093
|
-
|
|
67809
|
+
"anyOf": [
|
|
67810
|
+
{
|
|
67811
|
+
"type": "string"
|
|
67812
|
+
},
|
|
67813
|
+
{
|
|
67814
|
+
"type": "number"
|
|
67815
|
+
},
|
|
67816
|
+
{
|
|
67817
|
+
"type": "boolean"
|
|
67818
|
+
},
|
|
67819
|
+
{
|
|
67820
|
+
"$ref": "#/definitions/ParamRef"
|
|
67821
|
+
}
|
|
67822
|
+
],
|
|
67823
|
+
"description": "A transform argument."
|
|
67094
67824
|
},
|
|
67095
67825
|
"maxItems": 1,
|
|
67096
67826
|
"minItems": 1,
|
|
@@ -67172,21 +67902,39 @@
|
|
|
67172
67902
|
"median": {
|
|
67173
67903
|
"anyOf": [
|
|
67174
67904
|
{
|
|
67175
|
-
"
|
|
67176
|
-
|
|
67177
|
-
|
|
67178
|
-
|
|
67179
|
-
|
|
67180
|
-
|
|
67905
|
+
"anyOf": [
|
|
67906
|
+
{
|
|
67907
|
+
"type": "string"
|
|
67908
|
+
},
|
|
67909
|
+
{
|
|
67910
|
+
"type": "number"
|
|
67911
|
+
},
|
|
67912
|
+
{
|
|
67913
|
+
"type": "boolean"
|
|
67914
|
+
},
|
|
67915
|
+
{
|
|
67916
|
+
"$ref": "#/definitions/ParamRef"
|
|
67917
|
+
}
|
|
67918
|
+
],
|
|
67919
|
+
"description": "A transform argument."
|
|
67181
67920
|
},
|
|
67182
67921
|
{
|
|
67183
67922
|
"items": {
|
|
67184
|
-
"
|
|
67185
|
-
|
|
67186
|
-
|
|
67187
|
-
|
|
67188
|
-
|
|
67189
|
-
|
|
67923
|
+
"anyOf": [
|
|
67924
|
+
{
|
|
67925
|
+
"type": "string"
|
|
67926
|
+
},
|
|
67927
|
+
{
|
|
67928
|
+
"type": "number"
|
|
67929
|
+
},
|
|
67930
|
+
{
|
|
67931
|
+
"type": "boolean"
|
|
67932
|
+
},
|
|
67933
|
+
{
|
|
67934
|
+
"$ref": "#/definitions/ParamRef"
|
|
67935
|
+
}
|
|
67936
|
+
],
|
|
67937
|
+
"description": "A transform argument."
|
|
67190
67938
|
},
|
|
67191
67939
|
"maxItems": 1,
|
|
67192
67940
|
"minItems": 1,
|
|
@@ -67350,21 +68098,39 @@
|
|
|
67350
68098
|
"min": {
|
|
67351
68099
|
"anyOf": [
|
|
67352
68100
|
{
|
|
67353
|
-
"
|
|
67354
|
-
|
|
67355
|
-
|
|
67356
|
-
|
|
67357
|
-
|
|
67358
|
-
|
|
68101
|
+
"anyOf": [
|
|
68102
|
+
{
|
|
68103
|
+
"type": "string"
|
|
68104
|
+
},
|
|
68105
|
+
{
|
|
68106
|
+
"type": "number"
|
|
68107
|
+
},
|
|
68108
|
+
{
|
|
68109
|
+
"type": "boolean"
|
|
68110
|
+
},
|
|
68111
|
+
{
|
|
68112
|
+
"$ref": "#/definitions/ParamRef"
|
|
68113
|
+
}
|
|
68114
|
+
],
|
|
68115
|
+
"description": "A transform argument."
|
|
67359
68116
|
},
|
|
67360
68117
|
{
|
|
67361
68118
|
"items": {
|
|
67362
|
-
"
|
|
67363
|
-
|
|
67364
|
-
|
|
67365
|
-
|
|
67366
|
-
|
|
67367
|
-
|
|
68119
|
+
"anyOf": [
|
|
68120
|
+
{
|
|
68121
|
+
"type": "string"
|
|
68122
|
+
},
|
|
68123
|
+
{
|
|
68124
|
+
"type": "number"
|
|
68125
|
+
},
|
|
68126
|
+
{
|
|
68127
|
+
"type": "boolean"
|
|
68128
|
+
},
|
|
68129
|
+
{
|
|
68130
|
+
"$ref": "#/definitions/ParamRef"
|
|
68131
|
+
}
|
|
68132
|
+
],
|
|
68133
|
+
"description": "A transform argument."
|
|
67368
68134
|
},
|
|
67369
68135
|
"maxItems": 1,
|
|
67370
68136
|
"minItems": 1,
|
|
@@ -67446,21 +68212,39 @@
|
|
|
67446
68212
|
"mode": {
|
|
67447
68213
|
"anyOf": [
|
|
67448
68214
|
{
|
|
67449
|
-
"
|
|
67450
|
-
|
|
67451
|
-
|
|
67452
|
-
|
|
67453
|
-
|
|
67454
|
-
|
|
68215
|
+
"anyOf": [
|
|
68216
|
+
{
|
|
68217
|
+
"type": "string"
|
|
68218
|
+
},
|
|
68219
|
+
{
|
|
68220
|
+
"type": "number"
|
|
68221
|
+
},
|
|
68222
|
+
{
|
|
68223
|
+
"type": "boolean"
|
|
68224
|
+
},
|
|
68225
|
+
{
|
|
68226
|
+
"$ref": "#/definitions/ParamRef"
|
|
68227
|
+
}
|
|
68228
|
+
],
|
|
68229
|
+
"description": "A transform argument."
|
|
67455
68230
|
},
|
|
67456
68231
|
{
|
|
67457
68232
|
"items": {
|
|
67458
|
-
"
|
|
67459
|
-
|
|
67460
|
-
|
|
67461
|
-
|
|
67462
|
-
|
|
67463
|
-
|
|
68233
|
+
"anyOf": [
|
|
68234
|
+
{
|
|
68235
|
+
"type": "string"
|
|
68236
|
+
},
|
|
68237
|
+
{
|
|
68238
|
+
"type": "number"
|
|
68239
|
+
},
|
|
68240
|
+
{
|
|
68241
|
+
"type": "boolean"
|
|
68242
|
+
},
|
|
68243
|
+
{
|
|
68244
|
+
"$ref": "#/definitions/ParamRef"
|
|
68245
|
+
}
|
|
68246
|
+
],
|
|
68247
|
+
"description": "A transform argument."
|
|
67464
68248
|
},
|
|
67465
68249
|
"maxItems": 1,
|
|
67466
68250
|
"minItems": 1,
|
|
@@ -67539,21 +68323,39 @@
|
|
|
67539
68323
|
"ntile": {
|
|
67540
68324
|
"anyOf": [
|
|
67541
68325
|
{
|
|
67542
|
-
"
|
|
67543
|
-
|
|
67544
|
-
|
|
67545
|
-
|
|
67546
|
-
|
|
67547
|
-
|
|
68326
|
+
"anyOf": [
|
|
68327
|
+
{
|
|
68328
|
+
"type": "string"
|
|
68329
|
+
},
|
|
68330
|
+
{
|
|
68331
|
+
"type": "number"
|
|
68332
|
+
},
|
|
68333
|
+
{
|
|
68334
|
+
"type": "boolean"
|
|
68335
|
+
},
|
|
68336
|
+
{
|
|
68337
|
+
"$ref": "#/definitions/ParamRef"
|
|
68338
|
+
}
|
|
68339
|
+
],
|
|
68340
|
+
"description": "A transform argument."
|
|
67548
68341
|
},
|
|
67549
68342
|
{
|
|
67550
68343
|
"items": {
|
|
67551
|
-
"
|
|
67552
|
-
|
|
67553
|
-
|
|
67554
|
-
|
|
67555
|
-
|
|
67556
|
-
|
|
68344
|
+
"anyOf": [
|
|
68345
|
+
{
|
|
68346
|
+
"type": "string"
|
|
68347
|
+
},
|
|
68348
|
+
{
|
|
68349
|
+
"type": "number"
|
|
68350
|
+
},
|
|
68351
|
+
{
|
|
68352
|
+
"type": "boolean"
|
|
68353
|
+
},
|
|
68354
|
+
{
|
|
68355
|
+
"$ref": "#/definitions/ParamRef"
|
|
68356
|
+
}
|
|
68357
|
+
],
|
|
68358
|
+
"description": "A transform argument."
|
|
67557
68359
|
},
|
|
67558
68360
|
"maxItems": 1,
|
|
67559
68361
|
"minItems": 1,
|
|
@@ -67708,21 +68510,39 @@
|
|
|
67708
68510
|
"nth_value": {
|
|
67709
68511
|
"anyOf": [
|
|
67710
68512
|
{
|
|
67711
|
-
"
|
|
67712
|
-
|
|
67713
|
-
|
|
67714
|
-
|
|
67715
|
-
|
|
67716
|
-
|
|
68513
|
+
"anyOf": [
|
|
68514
|
+
{
|
|
68515
|
+
"type": "string"
|
|
68516
|
+
},
|
|
68517
|
+
{
|
|
68518
|
+
"type": "number"
|
|
68519
|
+
},
|
|
68520
|
+
{
|
|
68521
|
+
"type": "boolean"
|
|
68522
|
+
},
|
|
68523
|
+
{
|
|
68524
|
+
"$ref": "#/definitions/ParamRef"
|
|
68525
|
+
}
|
|
68526
|
+
],
|
|
68527
|
+
"description": "A transform argument."
|
|
67717
68528
|
},
|
|
67718
68529
|
{
|
|
67719
68530
|
"items": {
|
|
67720
|
-
"
|
|
67721
|
-
|
|
67722
|
-
|
|
67723
|
-
|
|
67724
|
-
|
|
67725
|
-
|
|
68531
|
+
"anyOf": [
|
|
68532
|
+
{
|
|
68533
|
+
"type": "string"
|
|
68534
|
+
},
|
|
68535
|
+
{
|
|
68536
|
+
"type": "number"
|
|
68537
|
+
},
|
|
68538
|
+
{
|
|
68539
|
+
"type": "boolean"
|
|
68540
|
+
},
|
|
68541
|
+
{
|
|
68542
|
+
"$ref": "#/definitions/ParamRef"
|
|
68543
|
+
}
|
|
68544
|
+
],
|
|
68545
|
+
"description": "A transform argument."
|
|
67726
68546
|
},
|
|
67727
68547
|
"maxItems": 2,
|
|
67728
68548
|
"minItems": 1,
|
|
@@ -68170,6 +68990,20 @@
|
|
|
68170
68990
|
],
|
|
68171
68991
|
"description": "How to distribute unused space in the **range** for *point* and *band* scales. A number in [0, 1], such as:\n\n- 0 - use the start of the range, putting unused space at the end\n- 0.5 (default) - use the middle, distributing unused space evenly\n- 1 use the end, putting unused space at the start\n\nFor ordinal position scales only."
|
|
68172
68992
|
},
|
|
68993
|
+
"ariaDescription": {
|
|
68994
|
+
"description": "The [aria-description attribute][1] on the SVG root.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-description",
|
|
68995
|
+
"type": [
|
|
68996
|
+
"string",
|
|
68997
|
+
"null"
|
|
68998
|
+
]
|
|
68999
|
+
},
|
|
69000
|
+
"ariaLabel": {
|
|
69001
|
+
"description": "The [aria-label attribute][1] on the SVG root.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label",
|
|
69002
|
+
"type": [
|
|
69003
|
+
"string",
|
|
69004
|
+
"null"
|
|
69005
|
+
]
|
|
69006
|
+
},
|
|
68173
69007
|
"aspectRatio": {
|
|
68174
69008
|
"anyOf": [
|
|
68175
69009
|
{
|
|
@@ -68221,6 +69055,28 @@
|
|
|
68221
69055
|
],
|
|
68222
69056
|
"description": "The side of the frame on which to place the implicit axis: *top* or\n*bottom* for *x* or *fx*, or *left* or *right* for *y* or *fy*. The default depends on the scale:\n\n- *x* - *bottom*\n- *y* - *left*\n- *fx* - *top* if there is a *bottom* *x* axis, and otherwise *bottom*\n- *fy* - *right* if there is a *left* *y* axis, and otherwise *right*\n\nIf *both*, an implicit axis will be rendered on both sides of the plot (*top* and *bottom* for *x* or *fx*, or *left* and *right* for *y* or\n*fy*). If null, the implicit axis is suppressed.\n\nFor position axes only."
|
|
68223
69057
|
},
|
|
69058
|
+
"clip": {
|
|
69059
|
+
"anyOf": [
|
|
69060
|
+
{
|
|
69061
|
+
"const": "frame",
|
|
69062
|
+
"type": "string"
|
|
69063
|
+
},
|
|
69064
|
+
{
|
|
69065
|
+
"const": "sphere",
|
|
69066
|
+
"type": "string"
|
|
69067
|
+
},
|
|
69068
|
+
{
|
|
69069
|
+
"type": "boolean"
|
|
69070
|
+
},
|
|
69071
|
+
{
|
|
69072
|
+
"type": "null"
|
|
69073
|
+
},
|
|
69074
|
+
{
|
|
69075
|
+
"$ref": "#/definitions/ParamRef"
|
|
69076
|
+
}
|
|
69077
|
+
],
|
|
69078
|
+
"description": "The default clip for all marks."
|
|
69079
|
+
},
|
|
68224
69080
|
"colorBase": {
|
|
68225
69081
|
"anyOf": [
|
|
68226
69082
|
{
|
|
@@ -69264,20 +70120,6 @@
|
|
|
69264
70120
|
],
|
|
69265
70121
|
"description": "Shorthand to set the same default for all four insets: **insetTop**,\n**insetRight**, **insetBottom**, and **insetLeft**. All insets typically default to zero, though not always (say when using bin transform). A positive inset reduces effective area, while a negative inset increases it."
|
|
69266
70122
|
},
|
|
69267
|
-
"label": {
|
|
69268
|
-
"anyOf": [
|
|
69269
|
-
{
|
|
69270
|
-
"type": "string"
|
|
69271
|
-
},
|
|
69272
|
-
{
|
|
69273
|
-
"type": "null"
|
|
69274
|
-
},
|
|
69275
|
-
{
|
|
69276
|
-
"$ref": "#/definitions/ParamRef"
|
|
69277
|
-
}
|
|
69278
|
-
],
|
|
69279
|
-
"description": "A textual label to show on the axis or legend; if null, show no label. By default the scale label is inferred from channel definitions, possibly with an arrow (↑, →, ↓, or ←) to indicate the direction of increasing value.\n\nFor axes and legends only."
|
|
69280
|
-
},
|
|
69281
70123
|
"lengthBase": {
|
|
69282
70124
|
"anyOf": [
|
|
69283
70125
|
{
|
|
@@ -71049,6 +71891,20 @@
|
|
|
71049
71891
|
],
|
|
71050
71892
|
"description": "How to distribute unused space in the **range** for *point* and *band* scales. A number in [0, 1], such as:\n\n- 0 - use the start of the range, putting unused space at the end\n- 0.5 (default) - use the middle, distributing unused space evenly\n- 1 use the end, putting unused space at the start\n\nFor ordinal position scales only."
|
|
71051
71893
|
},
|
|
71894
|
+
"ariaDescription": {
|
|
71895
|
+
"description": "The [aria-description attribute][1] on the SVG root.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-description",
|
|
71896
|
+
"type": [
|
|
71897
|
+
"string",
|
|
71898
|
+
"null"
|
|
71899
|
+
]
|
|
71900
|
+
},
|
|
71901
|
+
"ariaLabel": {
|
|
71902
|
+
"description": "The [aria-label attribute][1] on the SVG root.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label",
|
|
71903
|
+
"type": [
|
|
71904
|
+
"string",
|
|
71905
|
+
"null"
|
|
71906
|
+
]
|
|
71907
|
+
},
|
|
71052
71908
|
"aspectRatio": {
|
|
71053
71909
|
"anyOf": [
|
|
71054
71910
|
{
|
|
@@ -71100,6 +71956,28 @@
|
|
|
71100
71956
|
],
|
|
71101
71957
|
"description": "The side of the frame on which to place the implicit axis: *top* or\n*bottom* for *x* or *fx*, or *left* or *right* for *y* or *fy*. The default depends on the scale:\n\n- *x* - *bottom*\n- *y* - *left*\n- *fx* - *top* if there is a *bottom* *x* axis, and otherwise *bottom*\n- *fy* - *right* if there is a *left* *y* axis, and otherwise *right*\n\nIf *both*, an implicit axis will be rendered on both sides of the plot (*top* and *bottom* for *x* or *fx*, or *left* and *right* for *y* or\n*fy*). If null, the implicit axis is suppressed.\n\nFor position axes only."
|
|
71102
71958
|
},
|
|
71959
|
+
"clip": {
|
|
71960
|
+
"anyOf": [
|
|
71961
|
+
{
|
|
71962
|
+
"const": "frame",
|
|
71963
|
+
"type": "string"
|
|
71964
|
+
},
|
|
71965
|
+
{
|
|
71966
|
+
"const": "sphere",
|
|
71967
|
+
"type": "string"
|
|
71968
|
+
},
|
|
71969
|
+
{
|
|
71970
|
+
"type": "boolean"
|
|
71971
|
+
},
|
|
71972
|
+
{
|
|
71973
|
+
"type": "null"
|
|
71974
|
+
},
|
|
71975
|
+
{
|
|
71976
|
+
"$ref": "#/definitions/ParamRef"
|
|
71977
|
+
}
|
|
71978
|
+
],
|
|
71979
|
+
"description": "The default clip for all marks."
|
|
71980
|
+
},
|
|
71103
71981
|
"colorBase": {
|
|
71104
71982
|
"anyOf": [
|
|
71105
71983
|
{
|
|
@@ -72143,20 +73021,6 @@
|
|
|
72143
73021
|
],
|
|
72144
73022
|
"description": "Shorthand to set the same default for all four insets: **insetTop**,\n**insetRight**, **insetBottom**, and **insetLeft**. All insets typically default to zero, though not always (say when using bin transform). A positive inset reduces effective area, while a negative inset increases it."
|
|
72145
73023
|
},
|
|
72146
|
-
"label": {
|
|
72147
|
-
"anyOf": [
|
|
72148
|
-
{
|
|
72149
|
-
"type": "string"
|
|
72150
|
-
},
|
|
72151
|
-
{
|
|
72152
|
-
"type": "null"
|
|
72153
|
-
},
|
|
72154
|
-
{
|
|
72155
|
-
"$ref": "#/definitions/ParamRef"
|
|
72156
|
-
}
|
|
72157
|
-
],
|
|
72158
|
-
"description": "A textual label to show on the axis or legend; if null, show no label. By default the scale label is inferred from channel definitions, possibly with an arrow (↑, →, ↓, or ←) to indicate the direction of increasing value.\n\nFor axes and legends only."
|
|
72159
|
-
},
|
|
72160
73024
|
"lengthBase": {
|
|
72161
73025
|
"anyOf": [
|
|
72162
73026
|
{
|
|
@@ -73907,8 +74771,15 @@
|
|
|
73907
74771
|
"description": "A selection that filters the mark data."
|
|
73908
74772
|
},
|
|
73909
74773
|
"from": {
|
|
73910
|
-
"
|
|
73911
|
-
|
|
74774
|
+
"anyOf": [
|
|
74775
|
+
{
|
|
74776
|
+
"type": "string"
|
|
74777
|
+
},
|
|
74778
|
+
{
|
|
74779
|
+
"$ref": "#/definitions/ParamRef"
|
|
74780
|
+
}
|
|
74781
|
+
],
|
|
74782
|
+
"description": "The name of the backing data table."
|
|
73912
74783
|
},
|
|
73913
74784
|
"optimize": {
|
|
73914
74785
|
"description": "A flag (default `true`) to enable any mark-specific query optimizations. If `false`, optimizations are disabled to aid testing and debugging.",
|
|
@@ -73941,34 +74812,37 @@
|
|
|
73941
74812
|
"$ref": "#/definitions/NearestY"
|
|
73942
74813
|
},
|
|
73943
74814
|
{
|
|
73944
|
-
"$ref": "#/definitions/
|
|
74815
|
+
"$ref": "#/definitions/Pan"
|
|
73945
74816
|
},
|
|
73946
74817
|
{
|
|
73947
|
-
"$ref": "#/definitions/
|
|
74818
|
+
"$ref": "#/definitions/PanX"
|
|
73948
74819
|
},
|
|
73949
74820
|
{
|
|
73950
|
-
"$ref": "#/definitions/
|
|
74821
|
+
"$ref": "#/definitions/PanY"
|
|
73951
74822
|
},
|
|
73952
74823
|
{
|
|
73953
|
-
"$ref": "#/definitions/
|
|
74824
|
+
"$ref": "#/definitions/PanZoom"
|
|
73954
74825
|
},
|
|
73955
74826
|
{
|
|
73956
|
-
"$ref": "#/definitions/
|
|
74827
|
+
"$ref": "#/definitions/PanZoomX"
|
|
73957
74828
|
},
|
|
73958
74829
|
{
|
|
73959
|
-
"$ref": "#/definitions/
|
|
74830
|
+
"$ref": "#/definitions/PanZoomY"
|
|
73960
74831
|
},
|
|
73961
74832
|
{
|
|
73962
|
-
"$ref": "#/definitions/
|
|
74833
|
+
"$ref": "#/definitions/Region"
|
|
73963
74834
|
},
|
|
73964
74835
|
{
|
|
73965
|
-
"$ref": "#/definitions/
|
|
74836
|
+
"$ref": "#/definitions/Toggle"
|
|
73966
74837
|
},
|
|
73967
74838
|
{
|
|
73968
|
-
"$ref": "#/definitions/
|
|
74839
|
+
"$ref": "#/definitions/ToggleX"
|
|
73969
74840
|
},
|
|
73970
74841
|
{
|
|
73971
|
-
"$ref": "#/definitions/
|
|
74842
|
+
"$ref": "#/definitions/ToggleY"
|
|
74843
|
+
},
|
|
74844
|
+
{
|
|
74845
|
+
"$ref": "#/definitions/ToggleColor"
|
|
73972
74846
|
}
|
|
73973
74847
|
],
|
|
73974
74848
|
"description": "A plot interactor entry."
|
|
@@ -74295,21 +75169,39 @@
|
|
|
74295
75169
|
"product": {
|
|
74296
75170
|
"anyOf": [
|
|
74297
75171
|
{
|
|
74298
|
-
"
|
|
74299
|
-
|
|
74300
|
-
|
|
74301
|
-
|
|
74302
|
-
|
|
74303
|
-
|
|
75172
|
+
"anyOf": [
|
|
75173
|
+
{
|
|
75174
|
+
"type": "string"
|
|
75175
|
+
},
|
|
75176
|
+
{
|
|
75177
|
+
"type": "number"
|
|
75178
|
+
},
|
|
75179
|
+
{
|
|
75180
|
+
"type": "boolean"
|
|
75181
|
+
},
|
|
75182
|
+
{
|
|
75183
|
+
"$ref": "#/definitions/ParamRef"
|
|
75184
|
+
}
|
|
75185
|
+
],
|
|
75186
|
+
"description": "A transform argument."
|
|
74304
75187
|
},
|
|
74305
75188
|
{
|
|
74306
75189
|
"items": {
|
|
74307
|
-
"
|
|
74308
|
-
|
|
74309
|
-
|
|
74310
|
-
|
|
74311
|
-
|
|
74312
|
-
|
|
75190
|
+
"anyOf": [
|
|
75191
|
+
{
|
|
75192
|
+
"type": "string"
|
|
75193
|
+
},
|
|
75194
|
+
{
|
|
75195
|
+
"type": "number"
|
|
75196
|
+
},
|
|
75197
|
+
{
|
|
75198
|
+
"type": "boolean"
|
|
75199
|
+
},
|
|
75200
|
+
{
|
|
75201
|
+
"$ref": "#/definitions/ParamRef"
|
|
75202
|
+
}
|
|
75203
|
+
],
|
|
75204
|
+
"description": "A transform argument."
|
|
74313
75205
|
},
|
|
74314
75206
|
"maxItems": 1,
|
|
74315
75207
|
"minItems": 1,
|
|
@@ -74413,12 +75305,21 @@
|
|
|
74413
75305
|
"quantile": {
|
|
74414
75306
|
"description": "Compute the quantile value of the given column at the provided probability threshold. For example, 0.5 is the median.",
|
|
74415
75307
|
"items": {
|
|
74416
|
-
"
|
|
74417
|
-
|
|
74418
|
-
|
|
74419
|
-
|
|
74420
|
-
|
|
74421
|
-
|
|
75308
|
+
"anyOf": [
|
|
75309
|
+
{
|
|
75310
|
+
"type": "string"
|
|
75311
|
+
},
|
|
75312
|
+
{
|
|
75313
|
+
"type": "number"
|
|
75314
|
+
},
|
|
75315
|
+
{
|
|
75316
|
+
"type": "boolean"
|
|
75317
|
+
},
|
|
75318
|
+
{
|
|
75319
|
+
"$ref": "#/definitions/ParamRef"
|
|
75320
|
+
}
|
|
75321
|
+
],
|
|
75322
|
+
"description": "A transform argument."
|
|
74422
75323
|
},
|
|
74423
75324
|
"maxItems": 2,
|
|
74424
75325
|
"minItems": 2,
|
|
@@ -74583,6 +75484,13 @@
|
|
|
74583
75484
|
],
|
|
74584
75485
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
74585
75486
|
},
|
|
75487
|
+
"channels": {
|
|
75488
|
+
"additionalProperties": {
|
|
75489
|
+
"type": "string"
|
|
75490
|
+
},
|
|
75491
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
75492
|
+
"type": "object"
|
|
75493
|
+
},
|
|
74586
75494
|
"clip": {
|
|
74587
75495
|
"anyOf": [
|
|
74588
75496
|
{
|
|
@@ -75789,6 +76697,13 @@
|
|
|
75789
76697
|
],
|
|
75790
76698
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
75791
76699
|
},
|
|
76700
|
+
"channels": {
|
|
76701
|
+
"additionalProperties": {
|
|
76702
|
+
"type": "string"
|
|
76703
|
+
},
|
|
76704
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
76705
|
+
"type": "object"
|
|
76706
|
+
},
|
|
75792
76707
|
"clip": {
|
|
75793
76708
|
"anyOf": [
|
|
75794
76709
|
{
|
|
@@ -77000,6 +77915,13 @@
|
|
|
77000
77915
|
"$ref": "#/definitions/ChannelValue",
|
|
77001
77916
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
77002
77917
|
},
|
|
77918
|
+
"channels": {
|
|
77919
|
+
"additionalProperties": {
|
|
77920
|
+
"type": "string"
|
|
77921
|
+
},
|
|
77922
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
77923
|
+
"type": "object"
|
|
77924
|
+
},
|
|
77003
77925
|
"clip": {
|
|
77004
77926
|
"anyOf": [
|
|
77005
77927
|
{
|
|
@@ -78268,6 +79190,13 @@
|
|
|
78268
79190
|
"$ref": "#/definitions/ChannelValue",
|
|
78269
79191
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
78270
79192
|
},
|
|
79193
|
+
"channels": {
|
|
79194
|
+
"additionalProperties": {
|
|
79195
|
+
"type": "string"
|
|
79196
|
+
},
|
|
79197
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
79198
|
+
"type": "object"
|
|
79199
|
+
},
|
|
78271
79200
|
"clip": {
|
|
78272
79201
|
"anyOf": [
|
|
78273
79202
|
{
|
|
@@ -79536,6 +80465,13 @@
|
|
|
79536
80465
|
"$ref": "#/definitions/ChannelValue",
|
|
79537
80466
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
79538
80467
|
},
|
|
80468
|
+
"channels": {
|
|
80469
|
+
"additionalProperties": {
|
|
80470
|
+
"type": "string"
|
|
80471
|
+
},
|
|
80472
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
80473
|
+
"type": "object"
|
|
80474
|
+
},
|
|
79539
80475
|
"clip": {
|
|
79540
80476
|
"anyOf": [
|
|
79541
80477
|
{
|
|
@@ -80955,6 +81891,42 @@
|
|
|
80955
81891
|
],
|
|
80956
81892
|
"type": "string"
|
|
80957
81893
|
},
|
|
81894
|
+
"Region": {
|
|
81895
|
+
"additionalProperties": false,
|
|
81896
|
+
"description": "A rectangular region interactor.",
|
|
81897
|
+
"properties": {
|
|
81898
|
+
"as": {
|
|
81899
|
+
"$ref": "#/definitions/ParamRef",
|
|
81900
|
+
"description": "The output selection. A clause of the form `(field = value1) OR (field = value2) ...` is added for the currently selected values."
|
|
81901
|
+
},
|
|
81902
|
+
"brush": {
|
|
81903
|
+
"$ref": "#/definitions/BrushStyles",
|
|
81904
|
+
"description": "CSS styles for the brush (SVG `rect`) element."
|
|
81905
|
+
},
|
|
81906
|
+
"channels": {
|
|
81907
|
+
"description": "The encoding channels over which to select values. For a selected mark, selection clauses will cover the backing data fields for each channel.",
|
|
81908
|
+
"items": {
|
|
81909
|
+
"type": "string"
|
|
81910
|
+
},
|
|
81911
|
+
"type": "array"
|
|
81912
|
+
},
|
|
81913
|
+
"peers": {
|
|
81914
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
81915
|
+
"type": "boolean"
|
|
81916
|
+
},
|
|
81917
|
+
"select": {
|
|
81918
|
+
"const": "region",
|
|
81919
|
+
"description": "Select aspects of individual marks within a 2D range.",
|
|
81920
|
+
"type": "string"
|
|
81921
|
+
}
|
|
81922
|
+
},
|
|
81923
|
+
"required": [
|
|
81924
|
+
"as",
|
|
81925
|
+
"channels",
|
|
81926
|
+
"select"
|
|
81927
|
+
],
|
|
81928
|
+
"type": "object"
|
|
81929
|
+
},
|
|
80958
81930
|
"RegressionY": {
|
|
80959
81931
|
"additionalProperties": false,
|
|
80960
81932
|
"description": "The regressionY mark.",
|
|
@@ -80985,6 +81957,13 @@
|
|
|
80985
81957
|
"$ref": "#/definitions/ChannelValue",
|
|
80986
81958
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
80987
81959
|
},
|
|
81960
|
+
"channels": {
|
|
81961
|
+
"additionalProperties": {
|
|
81962
|
+
"type": "string"
|
|
81963
|
+
},
|
|
81964
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
81965
|
+
"type": "object"
|
|
81966
|
+
},
|
|
80988
81967
|
"ci": {
|
|
80989
81968
|
"anyOf": [
|
|
80990
81969
|
{
|
|
@@ -82217,6 +83196,13 @@
|
|
|
82217
83196
|
"$ref": "#/definitions/ChannelValue",
|
|
82218
83197
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
82219
83198
|
},
|
|
83199
|
+
"channels": {
|
|
83200
|
+
"additionalProperties": {
|
|
83201
|
+
"type": "string"
|
|
83202
|
+
},
|
|
83203
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
83204
|
+
"type": "object"
|
|
83205
|
+
},
|
|
82220
83206
|
"clip": {
|
|
82221
83207
|
"anyOf": [
|
|
82222
83208
|
{
|
|
@@ -83478,6 +84464,13 @@
|
|
|
83478
84464
|
"$ref": "#/definitions/ChannelValue",
|
|
83479
84465
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
83480
84466
|
},
|
|
84467
|
+
"channels": {
|
|
84468
|
+
"additionalProperties": {
|
|
84469
|
+
"type": "string"
|
|
84470
|
+
},
|
|
84471
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
84472
|
+
"type": "object"
|
|
84473
|
+
},
|
|
83481
84474
|
"clip": {
|
|
83482
84475
|
"anyOf": [
|
|
83483
84476
|
{
|
|
@@ -84818,6 +85811,20 @@
|
|
|
84818
85811
|
"description": "A flag for setting an initial empty selection state. If true, a selection with no clauses corresponds to an empty selection with no records. If false, a selection with no clauses selects all values.",
|
|
84819
85812
|
"type": "boolean"
|
|
84820
85813
|
},
|
|
85814
|
+
"include": {
|
|
85815
|
+
"anyOf": [
|
|
85816
|
+
{
|
|
85817
|
+
"$ref": "#/definitions/ParamRef"
|
|
85818
|
+
},
|
|
85819
|
+
{
|
|
85820
|
+
"items": {
|
|
85821
|
+
"$ref": "#/definitions/ParamRef"
|
|
85822
|
+
},
|
|
85823
|
+
"type": "array"
|
|
85824
|
+
}
|
|
85825
|
+
],
|
|
85826
|
+
"description": "Upstream selections whose clauses should be included as part of this selection. Any clauses or activations published to the upstream selections will be relayed to this selection."
|
|
85827
|
+
},
|
|
84821
85828
|
"select": {
|
|
84822
85829
|
"description": "The type of reactive parameter. One of:\n- `\"value\"` (default) for a standard `Param`\n- `\"intersect\"` for a `Selection` that intersects clauses (logical \"and\")\n- `\"union\"` for a `Selection` that unions clauses (logical \"or\")\n- `\"single\"` for a `Selection` that retains a single clause only\n- `\"crossfilter\"` for a cross-filtered intersection `Selection`",
|
|
84823
85830
|
"enum": [
|
|
@@ -85528,8 +86535,15 @@
|
|
|
85528
86535
|
"description": "A selection to filter the database table indicated by the `from` property."
|
|
85529
86536
|
},
|
|
85530
86537
|
"from": {
|
|
85531
|
-
"
|
|
85532
|
-
|
|
86538
|
+
"anyOf": [
|
|
86539
|
+
{
|
|
86540
|
+
"type": "string"
|
|
86541
|
+
},
|
|
86542
|
+
{
|
|
86543
|
+
"$ref": "#/definitions/ParamRef"
|
|
86544
|
+
}
|
|
86545
|
+
],
|
|
86546
|
+
"description": "The name of a database table to use as a data source for this widget."
|
|
85533
86547
|
},
|
|
85534
86548
|
"height": {
|
|
85535
86549
|
"description": "The height of the table widget, in pixels.",
|
|
@@ -85600,6 +86614,20 @@
|
|
|
85600
86614
|
],
|
|
85601
86615
|
"description": "How to distribute unused space in the **range** for *point* and *band* scales. A number in [0, 1], such as:\n\n- 0 - use the start of the range, putting unused space at the end\n- 0.5 (default) - use the middle, distributing unused space evenly\n- 1 use the end, putting unused space at the start\n\nFor ordinal position scales only."
|
|
85602
86616
|
},
|
|
86617
|
+
"ariaDescription": {
|
|
86618
|
+
"description": "The [aria-description attribute][1] on the SVG root.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-description",
|
|
86619
|
+
"type": [
|
|
86620
|
+
"string",
|
|
86621
|
+
"null"
|
|
86622
|
+
]
|
|
86623
|
+
},
|
|
86624
|
+
"ariaLabel": {
|
|
86625
|
+
"description": "The [aria-label attribute][1] on the SVG root.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label",
|
|
86626
|
+
"type": [
|
|
86627
|
+
"string",
|
|
86628
|
+
"null"
|
|
86629
|
+
]
|
|
86630
|
+
},
|
|
85603
86631
|
"aspectRatio": {
|
|
85604
86632
|
"anyOf": [
|
|
85605
86633
|
{
|
|
@@ -85651,6 +86679,28 @@
|
|
|
85651
86679
|
],
|
|
85652
86680
|
"description": "The side of the frame on which to place the implicit axis: *top* or\n*bottom* for *x* or *fx*, or *left* or *right* for *y* or *fy*. The default depends on the scale:\n\n- *x* - *bottom*\n- *y* - *left*\n- *fx* - *top* if there is a *bottom* *x* axis, and otherwise *bottom*\n- *fy* - *right* if there is a *left* *y* axis, and otherwise *right*\n\nIf *both*, an implicit axis will be rendered on both sides of the plot (*top* and *bottom* for *x* or *fx*, or *left* and *right* for *y* or\n*fy*). If null, the implicit axis is suppressed.\n\nFor position axes only."
|
|
85653
86681
|
},
|
|
86682
|
+
"clip": {
|
|
86683
|
+
"anyOf": [
|
|
86684
|
+
{
|
|
86685
|
+
"const": "frame",
|
|
86686
|
+
"type": "string"
|
|
86687
|
+
},
|
|
86688
|
+
{
|
|
86689
|
+
"const": "sphere",
|
|
86690
|
+
"type": "string"
|
|
86691
|
+
},
|
|
86692
|
+
{
|
|
86693
|
+
"type": "boolean"
|
|
86694
|
+
},
|
|
86695
|
+
{
|
|
86696
|
+
"type": "null"
|
|
86697
|
+
},
|
|
86698
|
+
{
|
|
86699
|
+
"$ref": "#/definitions/ParamRef"
|
|
86700
|
+
}
|
|
86701
|
+
],
|
|
86702
|
+
"description": "The default clip for all marks."
|
|
86703
|
+
},
|
|
85654
86704
|
"colorBase": {
|
|
85655
86705
|
"anyOf": [
|
|
85656
86706
|
{
|
|
@@ -86702,20 +87752,6 @@
|
|
|
86702
87752
|
],
|
|
86703
87753
|
"description": "Shorthand to set the same default for all four insets: **insetTop**,\n**insetRight**, **insetBottom**, and **insetLeft**. All insets typically default to zero, though not always (say when using bin transform). A positive inset reduces effective area, while a negative inset increases it."
|
|
86704
87754
|
},
|
|
86705
|
-
"label": {
|
|
86706
|
-
"anyOf": [
|
|
86707
|
-
{
|
|
86708
|
-
"type": "string"
|
|
86709
|
-
},
|
|
86710
|
-
{
|
|
86711
|
-
"type": "null"
|
|
86712
|
-
},
|
|
86713
|
-
{
|
|
86714
|
-
"$ref": "#/definitions/ParamRef"
|
|
86715
|
-
}
|
|
86716
|
-
],
|
|
86717
|
-
"description": "A textual label to show on the axis or legend; if null, show no label. By default the scale label is inferred from channel definitions, possibly with an arrow (↑, →, ↓, or ←) to indicate the direction of increasing value.\n\nFor axes and legends only."
|
|
86718
|
-
},
|
|
86719
87755
|
"lengthBase": {
|
|
86720
87756
|
"anyOf": [
|
|
86721
87757
|
{
|
|
@@ -88518,6 +89554,13 @@
|
|
|
88518
89554
|
"$ref": "#/definitions/ChannelValue",
|
|
88519
89555
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
88520
89556
|
},
|
|
89557
|
+
"channels": {
|
|
89558
|
+
"additionalProperties": {
|
|
89559
|
+
"type": "string"
|
|
89560
|
+
},
|
|
89561
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
89562
|
+
"type": "object"
|
|
89563
|
+
},
|
|
88521
89564
|
"clip": {
|
|
88522
89565
|
"anyOf": [
|
|
88523
89566
|
{
|
|
@@ -89726,6 +90769,13 @@
|
|
|
89726
90769
|
"$ref": "#/definitions/ChannelValue",
|
|
89727
90770
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
89728
90771
|
},
|
|
90772
|
+
"channels": {
|
|
90773
|
+
"additionalProperties": {
|
|
90774
|
+
"type": "string"
|
|
90775
|
+
},
|
|
90776
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
90777
|
+
"type": "object"
|
|
90778
|
+
},
|
|
89729
90779
|
"clip": {
|
|
89730
90780
|
"anyOf": [
|
|
89731
90781
|
{
|
|
@@ -90934,6 +91984,13 @@
|
|
|
90934
91984
|
"$ref": "#/definitions/ChannelValue",
|
|
90935
91985
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
90936
91986
|
},
|
|
91987
|
+
"channels": {
|
|
91988
|
+
"additionalProperties": {
|
|
91989
|
+
"type": "string"
|
|
91990
|
+
},
|
|
91991
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
91992
|
+
"type": "object"
|
|
91993
|
+
},
|
|
90937
91994
|
"clip": {
|
|
90938
91995
|
"anyOf": [
|
|
90939
91996
|
{
|
|
@@ -92156,6 +93213,13 @@
|
|
|
92156
93213
|
],
|
|
92157
93214
|
"description": "The angle, a constant in degrees, between the straight line intersecting the arrow’s two control points and the outgoing tangent direction of the arrow from the start point. The angle must be within ±90°; a positive angle will produce a clockwise curve, while a negative angle will produce a counterclockwise curve; zero (the default) will produce a straight line. Use true for 22.5°."
|
|
92158
93215
|
},
|
|
93216
|
+
"channels": {
|
|
93217
|
+
"additionalProperties": {
|
|
93218
|
+
"type": "string"
|
|
93219
|
+
},
|
|
93220
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
93221
|
+
"type": "object"
|
|
93222
|
+
},
|
|
92159
93223
|
"clip": {
|
|
92160
93224
|
"anyOf": [
|
|
92161
93225
|
{
|
|
@@ -93424,6 +94488,13 @@
|
|
|
93424
94488
|
"$ref": "#/definitions/ChannelValue",
|
|
93425
94489
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
93426
94490
|
},
|
|
94491
|
+
"channels": {
|
|
94492
|
+
"additionalProperties": {
|
|
94493
|
+
"type": "string"
|
|
94494
|
+
},
|
|
94495
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
94496
|
+
"type": "object"
|
|
94497
|
+
},
|
|
93427
94498
|
"clip": {
|
|
93428
94499
|
"anyOf": [
|
|
93429
94500
|
{
|
|
@@ -95123,6 +96194,13 @@
|
|
|
95123
96194
|
"$ref": "#/definitions/ChannelValue",
|
|
95124
96195
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
95125
96196
|
},
|
|
96197
|
+
"channels": {
|
|
96198
|
+
"additionalProperties": {
|
|
96199
|
+
"type": "string"
|
|
96200
|
+
},
|
|
96201
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
96202
|
+
"type": "object"
|
|
96203
|
+
},
|
|
95126
96204
|
"clip": {
|
|
95127
96205
|
"anyOf": [
|
|
95128
96206
|
{
|
|
@@ -96822,6 +97900,13 @@
|
|
|
96822
97900
|
"$ref": "#/definitions/ChannelValue",
|
|
96823
97901
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
96824
97902
|
},
|
|
97903
|
+
"channels": {
|
|
97904
|
+
"additionalProperties": {
|
|
97905
|
+
"type": "string"
|
|
97906
|
+
},
|
|
97907
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
97908
|
+
"type": "object"
|
|
97909
|
+
},
|
|
96825
97910
|
"clip": {
|
|
96826
97911
|
"anyOf": [
|
|
96827
97912
|
{
|
|
@@ -98521,6 +99606,13 @@
|
|
|
98521
99606
|
"$ref": "#/definitions/ChannelValue",
|
|
98522
99607
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
98523
99608
|
},
|
|
99609
|
+
"channels": {
|
|
99610
|
+
"additionalProperties": {
|
|
99611
|
+
"type": "string"
|
|
99612
|
+
},
|
|
99613
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
99614
|
+
"type": "object"
|
|
99615
|
+
},
|
|
98524
99616
|
"clip": {
|
|
98525
99617
|
"anyOf": [
|
|
98526
99618
|
{
|
|
@@ -100220,6 +101312,13 @@
|
|
|
100220
101312
|
"$ref": "#/definitions/ChannelValue",
|
|
100221
101313
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
100222
101314
|
},
|
|
101315
|
+
"channels": {
|
|
101316
|
+
"additionalProperties": {
|
|
101317
|
+
"type": "string"
|
|
101318
|
+
},
|
|
101319
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
101320
|
+
"type": "object"
|
|
101321
|
+
},
|
|
100223
101322
|
"clip": {
|
|
100224
101323
|
"anyOf": [
|
|
100225
101324
|
{
|
|
@@ -101565,6 +102664,13 @@
|
|
|
101565
102664
|
"$ref": "#/definitions/ChannelValue",
|
|
101566
102665
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
101567
102666
|
},
|
|
102667
|
+
"channels": {
|
|
102668
|
+
"additionalProperties": {
|
|
102669
|
+
"type": "string"
|
|
102670
|
+
},
|
|
102671
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
102672
|
+
"type": "object"
|
|
102673
|
+
},
|
|
101568
102674
|
"clip": {
|
|
101569
102675
|
"anyOf": [
|
|
101570
102676
|
{
|
|
@@ -102910,6 +104016,13 @@
|
|
|
102910
104016
|
"$ref": "#/definitions/ChannelValue",
|
|
102911
104017
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
102912
104018
|
},
|
|
104019
|
+
"channels": {
|
|
104020
|
+
"additionalProperties": {
|
|
104021
|
+
"type": "string"
|
|
104022
|
+
},
|
|
104023
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
104024
|
+
"type": "object"
|
|
104025
|
+
},
|
|
102913
104026
|
"clip": {
|
|
102914
104027
|
"anyOf": [
|
|
102915
104028
|
{
|
|
@@ -104255,6 +105368,13 @@
|
|
|
104255
105368
|
"$ref": "#/definitions/ChannelValue",
|
|
104256
105369
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
104257
105370
|
},
|
|
105371
|
+
"channels": {
|
|
105372
|
+
"additionalProperties": {
|
|
105373
|
+
"type": "string"
|
|
105374
|
+
},
|
|
105375
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
105376
|
+
"type": "object"
|
|
105377
|
+
},
|
|
104258
105378
|
"clip": {
|
|
104259
105379
|
"anyOf": [
|
|
104260
105380
|
{
|
|
@@ -105576,6 +106696,13 @@
|
|
|
105576
106696
|
"$ref": "#/definitions/ChannelValue",
|
|
105577
106697
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
105578
106698
|
},
|
|
106699
|
+
"channels": {
|
|
106700
|
+
"additionalProperties": {
|
|
106701
|
+
"type": "string"
|
|
106702
|
+
},
|
|
106703
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
106704
|
+
"type": "object"
|
|
106705
|
+
},
|
|
105579
106706
|
"clip": {
|
|
105580
106707
|
"anyOf": [
|
|
105581
106708
|
{
|
|
@@ -106856,6 +107983,13 @@
|
|
|
106856
107983
|
"$ref": "#/definitions/ChannelValue",
|
|
106857
107984
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
106858
107985
|
},
|
|
107986
|
+
"channels": {
|
|
107987
|
+
"additionalProperties": {
|
|
107988
|
+
"type": "string"
|
|
107989
|
+
},
|
|
107990
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
107991
|
+
"type": "object"
|
|
107992
|
+
},
|
|
106859
107993
|
"clip": {
|
|
106860
107994
|
"anyOf": [
|
|
106861
107995
|
{
|
|
@@ -108136,6 +109270,13 @@
|
|
|
108136
109270
|
"$ref": "#/definitions/ChannelValue",
|
|
108137
109271
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
108138
109272
|
},
|
|
109273
|
+
"channels": {
|
|
109274
|
+
"additionalProperties": {
|
|
109275
|
+
"type": "string"
|
|
109276
|
+
},
|
|
109277
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
109278
|
+
"type": "object"
|
|
109279
|
+
},
|
|
108139
109280
|
"clip": {
|
|
108140
109281
|
"anyOf": [
|
|
108141
109282
|
{
|
|
@@ -109365,6 +110506,13 @@
|
|
|
109365
110506
|
"$ref": "#/definitions/ChannelValue",
|
|
109366
110507
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
109367
110508
|
},
|
|
110509
|
+
"channels": {
|
|
110510
|
+
"additionalProperties": {
|
|
110511
|
+
"type": "string"
|
|
110512
|
+
},
|
|
110513
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
110514
|
+
"type": "object"
|
|
110515
|
+
},
|
|
109368
110516
|
"clip": {
|
|
109369
110517
|
"anyOf": [
|
|
109370
110518
|
{
|
|
@@ -110594,6 +111742,13 @@
|
|
|
110594
111742
|
"$ref": "#/definitions/ChannelValue",
|
|
110595
111743
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
110596
111744
|
},
|
|
111745
|
+
"channels": {
|
|
111746
|
+
"additionalProperties": {
|
|
111747
|
+
"type": "string"
|
|
111748
|
+
},
|
|
111749
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
111750
|
+
"type": "object"
|
|
111751
|
+
},
|
|
110597
111752
|
"clip": {
|
|
110598
111753
|
"anyOf": [
|
|
110599
111754
|
{
|
|
@@ -111834,6 +112989,13 @@
|
|
|
111834
112989
|
],
|
|
111835
112990
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
111836
112991
|
},
|
|
112992
|
+
"channels": {
|
|
112993
|
+
"additionalProperties": {
|
|
112994
|
+
"type": "string"
|
|
112995
|
+
},
|
|
112996
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
112997
|
+
"type": "object"
|
|
112998
|
+
},
|
|
111837
112999
|
"clip": {
|
|
111838
113000
|
"anyOf": [
|
|
111839
113001
|
{
|
|
@@ -113055,6 +114217,13 @@
|
|
|
113055
114217
|
"$ref": "#/definitions/ChannelValue",
|
|
113056
114218
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
113057
114219
|
},
|
|
114220
|
+
"channels": {
|
|
114221
|
+
"additionalProperties": {
|
|
114222
|
+
"type": "string"
|
|
114223
|
+
},
|
|
114224
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
114225
|
+
"type": "object"
|
|
114226
|
+
},
|
|
113058
114227
|
"clip": {
|
|
113059
114228
|
"anyOf": [
|
|
113060
114229
|
{
|
|
@@ -114311,6 +115480,13 @@
|
|
|
114311
115480
|
"$ref": "#/definitions/ChannelValue",
|
|
114312
115481
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
114313
115482
|
},
|
|
115483
|
+
"channels": {
|
|
115484
|
+
"additionalProperties": {
|
|
115485
|
+
"type": "string"
|
|
115486
|
+
},
|
|
115487
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
115488
|
+
"type": "object"
|
|
115489
|
+
},
|
|
114314
115490
|
"clip": {
|
|
114315
115491
|
"anyOf": [
|
|
114316
115492
|
{
|
|
@@ -115567,6 +116743,13 @@
|
|
|
115567
116743
|
"$ref": "#/definitions/ChannelValue",
|
|
115568
116744
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
115569
116745
|
},
|
|
116746
|
+
"channels": {
|
|
116747
|
+
"additionalProperties": {
|
|
116748
|
+
"type": "string"
|
|
116749
|
+
},
|
|
116750
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
116751
|
+
"type": "object"
|
|
116752
|
+
},
|
|
115570
116753
|
"clip": {
|
|
115571
116754
|
"anyOf": [
|
|
115572
116755
|
{
|
|
@@ -116823,6 +118006,13 @@
|
|
|
116823
118006
|
"$ref": "#/definitions/ChannelValue",
|
|
116824
118007
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
116825
118008
|
},
|
|
118009
|
+
"channels": {
|
|
118010
|
+
"additionalProperties": {
|
|
118011
|
+
"type": "string"
|
|
118012
|
+
},
|
|
118013
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
118014
|
+
"type": "object"
|
|
118015
|
+
},
|
|
116826
118016
|
"clip": {
|
|
116827
118017
|
"anyOf": [
|
|
116828
118018
|
{
|
|
@@ -118079,6 +119269,13 @@
|
|
|
118079
119269
|
"$ref": "#/definitions/ChannelValue",
|
|
118080
119270
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
118081
119271
|
},
|
|
119272
|
+
"channels": {
|
|
119273
|
+
"additionalProperties": {
|
|
119274
|
+
"type": "string"
|
|
119275
|
+
},
|
|
119276
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
119277
|
+
"type": "object"
|
|
119278
|
+
},
|
|
118082
119279
|
"clip": {
|
|
118083
119280
|
"anyOf": [
|
|
118084
119281
|
{
|
|
@@ -119346,6 +120543,13 @@
|
|
|
119346
120543
|
],
|
|
119347
120544
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
119348
120545
|
},
|
|
120546
|
+
"channels": {
|
|
120547
|
+
"additionalProperties": {
|
|
120548
|
+
"type": "string"
|
|
120549
|
+
},
|
|
120550
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
120551
|
+
"type": "object"
|
|
120552
|
+
},
|
|
119349
120553
|
"clip": {
|
|
119350
120554
|
"anyOf": [
|
|
119351
120555
|
{
|
|
@@ -120587,6 +121791,13 @@
|
|
|
120587
121791
|
],
|
|
120588
121792
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
120589
121793
|
},
|
|
121794
|
+
"channels": {
|
|
121795
|
+
"additionalProperties": {
|
|
121796
|
+
"type": "string"
|
|
121797
|
+
},
|
|
121798
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
121799
|
+
"type": "object"
|
|
121800
|
+
},
|
|
120590
121801
|
"clip": {
|
|
120591
121802
|
"anyOf": [
|
|
120592
121803
|
{
|
|
@@ -122048,6 +123259,13 @@
|
|
|
122048
123259
|
],
|
|
122049
123260
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
122050
123261
|
},
|
|
123262
|
+
"channels": {
|
|
123263
|
+
"additionalProperties": {
|
|
123264
|
+
"type": "string"
|
|
123265
|
+
},
|
|
123266
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
123267
|
+
"type": "object"
|
|
123268
|
+
},
|
|
122051
123269
|
"clip": {
|
|
122052
123270
|
"anyOf": [
|
|
122053
123271
|
{
|
|
@@ -123272,6 +124490,13 @@
|
|
|
123272
124490
|
],
|
|
123273
124491
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
123274
124492
|
},
|
|
124493
|
+
"channels": {
|
|
124494
|
+
"additionalProperties": {
|
|
124495
|
+
"type": "string"
|
|
124496
|
+
},
|
|
124497
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
124498
|
+
"type": "object"
|
|
124499
|
+
},
|
|
123275
124500
|
"clip": {
|
|
123276
124501
|
"anyOf": [
|
|
123277
124502
|
{
|
|
@@ -124556,6 +125781,13 @@
|
|
|
124556
125781
|
],
|
|
124557
125782
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
124558
125783
|
},
|
|
125784
|
+
"channels": {
|
|
125785
|
+
"additionalProperties": {
|
|
125786
|
+
"type": "string"
|
|
125787
|
+
},
|
|
125788
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
125789
|
+
"type": "object"
|
|
125790
|
+
},
|
|
124559
125791
|
"clip": {
|
|
124560
125792
|
"anyOf": [
|
|
124561
125793
|
{
|
|
@@ -125783,6 +127015,13 @@
|
|
|
125783
127015
|
],
|
|
125784
127016
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
125785
127017
|
},
|
|
127018
|
+
"channels": {
|
|
127019
|
+
"additionalProperties": {
|
|
127020
|
+
"type": "string"
|
|
127021
|
+
},
|
|
127022
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
127023
|
+
"type": "object"
|
|
127024
|
+
},
|
|
125786
127025
|
"clip": {
|
|
125787
127026
|
"anyOf": [
|
|
125788
127027
|
{
|
|
@@ -127153,6 +128392,13 @@
|
|
|
127153
128392
|
],
|
|
127154
128393
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
127155
128394
|
},
|
|
128395
|
+
"channels": {
|
|
128396
|
+
"additionalProperties": {
|
|
128397
|
+
"type": "string"
|
|
128398
|
+
},
|
|
128399
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
128400
|
+
"type": "object"
|
|
128401
|
+
},
|
|
127156
128402
|
"clip": {
|
|
127157
128403
|
"anyOf": [
|
|
127158
128404
|
{
|
|
@@ -128376,6 +129622,13 @@
|
|
|
128376
129622
|
],
|
|
128377
129623
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
128378
129624
|
},
|
|
129625
|
+
"channels": {
|
|
129626
|
+
"additionalProperties": {
|
|
129627
|
+
"type": "string"
|
|
129628
|
+
},
|
|
129629
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
129630
|
+
"type": "object"
|
|
129631
|
+
},
|
|
128379
129632
|
"clip": {
|
|
128380
129633
|
"anyOf": [
|
|
128381
129634
|
{
|
|
@@ -129660,6 +130913,13 @@
|
|
|
129660
130913
|
],
|
|
129661
130914
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
129662
130915
|
},
|
|
130916
|
+
"channels": {
|
|
130917
|
+
"additionalProperties": {
|
|
130918
|
+
"type": "string"
|
|
130919
|
+
},
|
|
130920
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
130921
|
+
"type": "object"
|
|
130922
|
+
},
|
|
129663
130923
|
"clip": {
|
|
129664
130924
|
"anyOf": [
|
|
129665
130925
|
{
|
|
@@ -130892,6 +132152,13 @@
|
|
|
130892
132152
|
],
|
|
130893
132153
|
"description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
|
|
130894
132154
|
},
|
|
132155
|
+
"channels": {
|
|
132156
|
+
"additionalProperties": {
|
|
132157
|
+
"type": "string"
|
|
132158
|
+
},
|
|
132159
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
132160
|
+
"type": "object"
|
|
132161
|
+
},
|
|
130895
132162
|
"clip": {
|
|
130896
132163
|
"anyOf": [
|
|
130897
132164
|
{
|
|
@@ -132243,6 +133510,13 @@
|
|
|
132243
133510
|
"$ref": "#/definitions/ChannelValue",
|
|
132244
133511
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
132245
133512
|
},
|
|
133513
|
+
"channels": {
|
|
133514
|
+
"additionalProperties": {
|
|
133515
|
+
"type": "string"
|
|
133516
|
+
},
|
|
133517
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
133518
|
+
"type": "object"
|
|
133519
|
+
},
|
|
132246
133520
|
"clip": {
|
|
132247
133521
|
"anyOf": [
|
|
132248
133522
|
{
|
|
@@ -133446,6 +134720,13 @@
|
|
|
133446
134720
|
"$ref": "#/definitions/ChannelValue",
|
|
133447
134721
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
133448
134722
|
},
|
|
134723
|
+
"channels": {
|
|
134724
|
+
"additionalProperties": {
|
|
134725
|
+
"type": "string"
|
|
134726
|
+
},
|
|
134727
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
134728
|
+
"type": "object"
|
|
134729
|
+
},
|
|
133449
134730
|
"clip": {
|
|
133450
134731
|
"anyOf": [
|
|
133451
134732
|
{
|
|
@@ -134660,6 +135941,13 @@
|
|
|
134660
135941
|
"$ref": "#/definitions/ChannelValue",
|
|
134661
135942
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
134662
135943
|
},
|
|
135944
|
+
"channels": {
|
|
135945
|
+
"additionalProperties": {
|
|
135946
|
+
"type": "string"
|
|
135947
|
+
},
|
|
135948
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
135949
|
+
"type": "object"
|
|
135950
|
+
},
|
|
134663
135951
|
"clip": {
|
|
134664
135952
|
"anyOf": [
|
|
134665
135953
|
{
|
|
@@ -135874,6 +137162,13 @@
|
|
|
135874
137162
|
"$ref": "#/definitions/ChannelValue",
|
|
135875
137163
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
135876
137164
|
},
|
|
137165
|
+
"channels": {
|
|
137166
|
+
"additionalProperties": {
|
|
137167
|
+
"type": "string"
|
|
137168
|
+
},
|
|
137169
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
137170
|
+
"type": "object"
|
|
137171
|
+
},
|
|
135877
137172
|
"clip": {
|
|
135878
137173
|
"anyOf": [
|
|
135879
137174
|
{
|
|
@@ -137077,6 +138372,13 @@
|
|
|
137077
138372
|
"$ref": "#/definitions/ChannelValue",
|
|
137078
138373
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
137079
138374
|
},
|
|
138375
|
+
"channels": {
|
|
138376
|
+
"additionalProperties": {
|
|
138377
|
+
"type": "string"
|
|
138378
|
+
},
|
|
138379
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
138380
|
+
"type": "object"
|
|
138381
|
+
},
|
|
137080
138382
|
"clip": {
|
|
137081
138383
|
"anyOf": [
|
|
137082
138384
|
{
|
|
@@ -138280,6 +139582,13 @@
|
|
|
138280
139582
|
"$ref": "#/definitions/ChannelValue",
|
|
138281
139583
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
138282
139584
|
},
|
|
139585
|
+
"channels": {
|
|
139586
|
+
"additionalProperties": {
|
|
139587
|
+
"type": "string"
|
|
139588
|
+
},
|
|
139589
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
139590
|
+
"type": "object"
|
|
139591
|
+
},
|
|
138283
139592
|
"ci": {
|
|
138284
139593
|
"anyOf": [
|
|
138285
139594
|
{
|
|
@@ -139526,6 +140835,13 @@
|
|
|
139526
140835
|
"$ref": "#/definitions/ChannelValue",
|
|
139527
140836
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
139528
140837
|
},
|
|
140838
|
+
"channels": {
|
|
140839
|
+
"additionalProperties": {
|
|
140840
|
+
"type": "string"
|
|
140841
|
+
},
|
|
140842
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
140843
|
+
"type": "object"
|
|
140844
|
+
},
|
|
139529
140845
|
"ci": {
|
|
139530
140846
|
"anyOf": [
|
|
139531
140847
|
{
|
|
@@ -140799,6 +142115,13 @@
|
|
|
140799
142115
|
"$ref": "#/definitions/ChannelValue",
|
|
140800
142116
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
140801
142117
|
},
|
|
142118
|
+
"channels": {
|
|
142119
|
+
"additionalProperties": {
|
|
142120
|
+
"type": "string"
|
|
142121
|
+
},
|
|
142122
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
142123
|
+
"type": "object"
|
|
142124
|
+
},
|
|
140802
142125
|
"clip": {
|
|
140803
142126
|
"anyOf": [
|
|
140804
142127
|
{
|
|
@@ -142019,6 +143342,13 @@
|
|
|
142019
143342
|
"$ref": "#/definitions/ChannelValue",
|
|
142020
143343
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
142021
143344
|
},
|
|
143345
|
+
"channels": {
|
|
143346
|
+
"additionalProperties": {
|
|
143347
|
+
"type": "string"
|
|
143348
|
+
},
|
|
143349
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
143350
|
+
"type": "object"
|
|
143351
|
+
},
|
|
142022
143352
|
"clip": {
|
|
142023
143353
|
"anyOf": [
|
|
142024
143354
|
{
|
|
@@ -143172,6 +144502,13 @@
|
|
|
143172
144502
|
"$ref": "#/definitions/ChannelValue",
|
|
143173
144503
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
143174
144504
|
},
|
|
144505
|
+
"channels": {
|
|
144506
|
+
"additionalProperties": {
|
|
144507
|
+
"type": "string"
|
|
144508
|
+
},
|
|
144509
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
144510
|
+
"type": "object"
|
|
144511
|
+
},
|
|
143175
144512
|
"clip": {
|
|
143176
144513
|
"anyOf": [
|
|
143177
144514
|
{
|
|
@@ -144309,6 +145646,13 @@
|
|
|
144309
145646
|
"$ref": "#/definitions/ChannelValue",
|
|
144310
145647
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
144311
145648
|
},
|
|
145649
|
+
"channels": {
|
|
145650
|
+
"additionalProperties": {
|
|
145651
|
+
"type": "string"
|
|
145652
|
+
},
|
|
145653
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
145654
|
+
"type": "object"
|
|
145655
|
+
},
|
|
144312
145656
|
"clip": {
|
|
144313
145657
|
"anyOf": [
|
|
144314
145658
|
{
|
|
@@ -145457,6 +146801,13 @@
|
|
|
145457
146801
|
],
|
|
145458
146802
|
"description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. If also using a hexgrid mark, use matching **binWidth** values."
|
|
145459
146803
|
},
|
|
146804
|
+
"channels": {
|
|
146805
|
+
"additionalProperties": {
|
|
146806
|
+
"type": "string"
|
|
146807
|
+
},
|
|
146808
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
146809
|
+
"type": "object"
|
|
146810
|
+
},
|
|
145460
146811
|
"clip": {
|
|
145461
146812
|
"anyOf": [
|
|
145462
146813
|
{
|
|
@@ -146845,6 +148196,13 @@
|
|
|
146845
148196
|
],
|
|
146846
148197
|
"description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. Should match the **binWidth** of the hexbin mark."
|
|
146847
148198
|
},
|
|
148199
|
+
"channels": {
|
|
148200
|
+
"additionalProperties": {
|
|
148201
|
+
"type": "string"
|
|
148202
|
+
},
|
|
148203
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
148204
|
+
"type": "object"
|
|
148205
|
+
},
|
|
146848
148206
|
"clip": {
|
|
146849
148207
|
"anyOf": [
|
|
146850
148208
|
{
|
|
@@ -147982,6 +149340,13 @@
|
|
|
147982
149340
|
"$ref": "#/definitions/ChannelValue",
|
|
147983
149341
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
147984
149342
|
},
|
|
149343
|
+
"channels": {
|
|
149344
|
+
"additionalProperties": {
|
|
149345
|
+
"type": "string"
|
|
149346
|
+
},
|
|
149347
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
149348
|
+
"type": "object"
|
|
149349
|
+
},
|
|
147985
149350
|
"clip": {
|
|
147986
149351
|
"anyOf": [
|
|
147987
149352
|
{
|
|
@@ -149227,6 +150592,13 @@
|
|
|
149227
150592
|
"$ref": "#/definitions/ChannelValue",
|
|
149228
150593
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
149229
150594
|
},
|
|
150595
|
+
"channels": {
|
|
150596
|
+
"additionalProperties": {
|
|
150597
|
+
"type": "string"
|
|
150598
|
+
},
|
|
150599
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
150600
|
+
"type": "object"
|
|
150601
|
+
},
|
|
149230
150602
|
"clip": {
|
|
149231
150603
|
"anyOf": [
|
|
149232
150604
|
{
|
|
@@ -150487,6 +151859,13 @@
|
|
|
150487
151859
|
"$ref": "#/definitions/ChannelValue",
|
|
150488
151860
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
150489
151861
|
},
|
|
151862
|
+
"channels": {
|
|
151863
|
+
"additionalProperties": {
|
|
151864
|
+
"type": "string"
|
|
151865
|
+
},
|
|
151866
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
151867
|
+
"type": "object"
|
|
151868
|
+
},
|
|
150490
151869
|
"clip": {
|
|
150491
151870
|
"anyOf": [
|
|
150492
151871
|
{
|
|
@@ -151747,6 +153126,13 @@
|
|
|
151747
153126
|
"$ref": "#/definitions/ChannelValue",
|
|
151748
153127
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
151749
153128
|
},
|
|
153129
|
+
"channels": {
|
|
153130
|
+
"additionalProperties": {
|
|
153131
|
+
"type": "string"
|
|
153132
|
+
},
|
|
153133
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
153134
|
+
"type": "object"
|
|
153135
|
+
},
|
|
151750
153136
|
"clip": {
|
|
151751
153137
|
"anyOf": [
|
|
151752
153138
|
{
|
|
@@ -153007,6 +154393,13 @@
|
|
|
153007
154393
|
"$ref": "#/definitions/ChannelValue",
|
|
153008
154394
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
153009
154395
|
},
|
|
154396
|
+
"channels": {
|
|
154397
|
+
"additionalProperties": {
|
|
154398
|
+
"type": "string"
|
|
154399
|
+
},
|
|
154400
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
154401
|
+
"type": "object"
|
|
154402
|
+
},
|
|
153010
154403
|
"clip": {
|
|
153011
154404
|
"anyOf": [
|
|
153012
154405
|
{
|
|
@@ -154298,6 +155691,13 @@
|
|
|
154298
155691
|
],
|
|
154299
155692
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
154300
155693
|
},
|
|
155694
|
+
"channels": {
|
|
155695
|
+
"additionalProperties": {
|
|
155696
|
+
"type": "string"
|
|
155697
|
+
},
|
|
155698
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
155699
|
+
"type": "object"
|
|
155700
|
+
},
|
|
154301
155701
|
"clip": {
|
|
154302
155702
|
"anyOf": [
|
|
154303
155703
|
{
|
|
@@ -155524,6 +156924,13 @@
|
|
|
155524
156924
|
],
|
|
155525
156925
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
155526
156926
|
},
|
|
156927
|
+
"channels": {
|
|
156928
|
+
"additionalProperties": {
|
|
156929
|
+
"type": "string"
|
|
156930
|
+
},
|
|
156931
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
156932
|
+
"type": "object"
|
|
156933
|
+
},
|
|
155527
156934
|
"clip": {
|
|
155528
156935
|
"anyOf": [
|
|
155529
156936
|
{
|
|
@@ -156750,6 +158157,13 @@
|
|
|
156750
158157
|
],
|
|
156751
158158
|
"description": "The kernel density bandwidth for smoothing, in pixels."
|
|
156752
158159
|
},
|
|
158160
|
+
"channels": {
|
|
158161
|
+
"additionalProperties": {
|
|
158162
|
+
"type": "string"
|
|
158163
|
+
},
|
|
158164
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
158165
|
+
"type": "object"
|
|
158166
|
+
},
|
|
156753
158167
|
"clip": {
|
|
156754
158168
|
"anyOf": [
|
|
156755
158169
|
{
|
|
@@ -157981,6 +159395,13 @@
|
|
|
157981
159395
|
"$ref": "#/definitions/ChannelValue",
|
|
157982
159396
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
157983
159397
|
},
|
|
159398
|
+
"channels": {
|
|
159399
|
+
"additionalProperties": {
|
|
159400
|
+
"type": "string"
|
|
159401
|
+
},
|
|
159402
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
159403
|
+
"type": "object"
|
|
159404
|
+
},
|
|
157984
159405
|
"clip": {
|
|
157985
159406
|
"anyOf": [
|
|
157986
159407
|
{
|
|
@@ -159269,6 +160690,13 @@
|
|
|
159269
160690
|
"$ref": "#/definitions/ChannelValue",
|
|
159270
160691
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
159271
160692
|
},
|
|
160693
|
+
"channels": {
|
|
160694
|
+
"additionalProperties": {
|
|
160695
|
+
"type": "string"
|
|
160696
|
+
},
|
|
160697
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
160698
|
+
"type": "object"
|
|
160699
|
+
},
|
|
159272
160700
|
"clip": {
|
|
159273
160701
|
"anyOf": [
|
|
159274
160702
|
{
|
|
@@ -160557,6 +161985,13 @@
|
|
|
160557
161985
|
"$ref": "#/definitions/ChannelValue",
|
|
160558
161986
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
160559
161987
|
},
|
|
161988
|
+
"channels": {
|
|
161989
|
+
"additionalProperties": {
|
|
161990
|
+
"type": "string"
|
|
161991
|
+
},
|
|
161992
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
161993
|
+
"type": "object"
|
|
161994
|
+
},
|
|
160560
161995
|
"clip": {
|
|
160561
161996
|
"anyOf": [
|
|
160562
161997
|
{
|
|
@@ -161845,6 +163280,13 @@
|
|
|
161845
163280
|
"$ref": "#/definitions/ChannelValue",
|
|
161846
163281
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
161847
163282
|
},
|
|
163283
|
+
"channels": {
|
|
163284
|
+
"additionalProperties": {
|
|
163285
|
+
"type": "string"
|
|
163286
|
+
},
|
|
163287
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
163288
|
+
"type": "object"
|
|
163289
|
+
},
|
|
161848
163290
|
"ci": {
|
|
161849
163291
|
"anyOf": [
|
|
161850
163292
|
{
|
|
@@ -163017,6 +164459,13 @@
|
|
|
163017
164459
|
"$ref": "#/definitions/ChannelValue",
|
|
163018
164460
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
163019
164461
|
},
|
|
164462
|
+
"channels": {
|
|
164463
|
+
"additionalProperties": {
|
|
164464
|
+
"type": "string"
|
|
164465
|
+
},
|
|
164466
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
164467
|
+
"type": "object"
|
|
164468
|
+
},
|
|
163020
164469
|
"clip": {
|
|
163021
164470
|
"anyOf": [
|
|
163022
164471
|
{
|
|
@@ -164298,6 +165747,13 @@
|
|
|
164298
165747
|
"$ref": "#/definitions/ChannelValue",
|
|
164299
165748
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
164300
165749
|
},
|
|
165750
|
+
"channels": {
|
|
165751
|
+
"additionalProperties": {
|
|
165752
|
+
"type": "string"
|
|
165753
|
+
},
|
|
165754
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
165755
|
+
"type": "object"
|
|
165756
|
+
},
|
|
164301
165757
|
"clip": {
|
|
164302
165758
|
"anyOf": [
|
|
164303
165759
|
{
|
|
@@ -165579,6 +167035,13 @@
|
|
|
165579
167035
|
"$ref": "#/definitions/ChannelValue",
|
|
165580
167036
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
165581
167037
|
},
|
|
167038
|
+
"channels": {
|
|
167039
|
+
"additionalProperties": {
|
|
167040
|
+
"type": "string"
|
|
167041
|
+
},
|
|
167042
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
167043
|
+
"type": "object"
|
|
167044
|
+
},
|
|
165582
167045
|
"clip": {
|
|
165583
167046
|
"anyOf": [
|
|
165584
167047
|
{
|
|
@@ -166924,6 +168387,13 @@
|
|
|
166924
168387
|
"$ref": "#/definitions/ChannelValue",
|
|
166925
168388
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
166926
168389
|
},
|
|
168390
|
+
"channels": {
|
|
168391
|
+
"additionalProperties": {
|
|
168392
|
+
"type": "string"
|
|
168393
|
+
},
|
|
168394
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
168395
|
+
"type": "object"
|
|
168396
|
+
},
|
|
166927
168397
|
"clip": {
|
|
166928
168398
|
"anyOf": [
|
|
166929
168399
|
{
|
|
@@ -168280,6 +169750,13 @@
|
|
|
168280
169750
|
"$ref": "#/definitions/ChannelValue",
|
|
168281
169751
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
168282
169752
|
},
|
|
169753
|
+
"channels": {
|
|
169754
|
+
"additionalProperties": {
|
|
169755
|
+
"type": "string"
|
|
169756
|
+
},
|
|
169757
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
169758
|
+
"type": "object"
|
|
169759
|
+
},
|
|
168283
169760
|
"clip": {
|
|
168284
169761
|
"anyOf": [
|
|
168285
169762
|
{
|
|
@@ -169629,6 +171106,13 @@
|
|
|
169629
171106
|
"$ref": "#/definitions/ChannelValue",
|
|
169630
171107
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
169631
171108
|
},
|
|
171109
|
+
"channels": {
|
|
171110
|
+
"additionalProperties": {
|
|
171111
|
+
"type": "string"
|
|
171112
|
+
},
|
|
171113
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
171114
|
+
"type": "object"
|
|
171115
|
+
},
|
|
169632
171116
|
"clip": {
|
|
169633
171117
|
"anyOf": [
|
|
169634
171118
|
{
|
|
@@ -170892,6 +172376,13 @@
|
|
|
170892
172376
|
"$ref": "#/definitions/ChannelValue",
|
|
170893
172377
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
170894
172378
|
},
|
|
172379
|
+
"channels": {
|
|
172380
|
+
"additionalProperties": {
|
|
172381
|
+
"type": "string"
|
|
172382
|
+
},
|
|
172383
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
172384
|
+
"type": "object"
|
|
172385
|
+
},
|
|
170895
172386
|
"clip": {
|
|
170896
172387
|
"anyOf": [
|
|
170897
172388
|
{
|
|
@@ -172175,6 +173666,13 @@
|
|
|
172175
173666
|
"$ref": "#/definitions/ChannelValue",
|
|
172176
173667
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
172177
173668
|
},
|
|
173669
|
+
"channels": {
|
|
173670
|
+
"additionalProperties": {
|
|
173671
|
+
"type": "string"
|
|
173672
|
+
},
|
|
173673
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
173674
|
+
"type": "object"
|
|
173675
|
+
},
|
|
172178
173676
|
"clip": {
|
|
172179
173677
|
"anyOf": [
|
|
172180
173678
|
{
|
|
@@ -173382,6 +174880,13 @@
|
|
|
173382
174880
|
"$ref": "#/definitions/ChannelValue",
|
|
173383
174881
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
173384
174882
|
},
|
|
174883
|
+
"channels": {
|
|
174884
|
+
"additionalProperties": {
|
|
174885
|
+
"type": "string"
|
|
174886
|
+
},
|
|
174887
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
174888
|
+
"type": "object"
|
|
174889
|
+
},
|
|
173385
174890
|
"clip": {
|
|
173386
174891
|
"anyOf": [
|
|
173387
174892
|
{
|
|
@@ -174589,6 +176094,13 @@
|
|
|
174589
176094
|
"$ref": "#/definitions/ChannelValue",
|
|
174590
176095
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
174591
176096
|
},
|
|
176097
|
+
"channels": {
|
|
176098
|
+
"additionalProperties": {
|
|
176099
|
+
"type": "string"
|
|
176100
|
+
},
|
|
176101
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
176102
|
+
"type": "object"
|
|
176103
|
+
},
|
|
174592
176104
|
"clip": {
|
|
174593
176105
|
"anyOf": [
|
|
174594
176106
|
{
|
|
@@ -175796,6 +177308,13 @@
|
|
|
175796
177308
|
"$ref": "#/definitions/ChannelValue",
|
|
175797
177309
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
175798
177310
|
},
|
|
177311
|
+
"channels": {
|
|
177312
|
+
"additionalProperties": {
|
|
177313
|
+
"type": "string"
|
|
177314
|
+
},
|
|
177315
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
177316
|
+
"type": "object"
|
|
177317
|
+
},
|
|
175799
177318
|
"clip": {
|
|
175800
177319
|
"anyOf": [
|
|
175801
177320
|
{
|
|
@@ -177074,6 +178593,13 @@
|
|
|
177074
178593
|
"$ref": "#/definitions/ChannelValue",
|
|
177075
178594
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
177076
178595
|
},
|
|
178596
|
+
"channels": {
|
|
178597
|
+
"additionalProperties": {
|
|
178598
|
+
"type": "string"
|
|
178599
|
+
},
|
|
178600
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
178601
|
+
"type": "object"
|
|
178602
|
+
},
|
|
177077
178603
|
"clip": {
|
|
177078
178604
|
"anyOf": [
|
|
177079
178605
|
{
|
|
@@ -178207,6 +179733,13 @@
|
|
|
178207
179733
|
"$ref": "#/definitions/ChannelValue",
|
|
178208
179734
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
178209
179735
|
},
|
|
179736
|
+
"channels": {
|
|
179737
|
+
"additionalProperties": {
|
|
179738
|
+
"type": "string"
|
|
179739
|
+
},
|
|
179740
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
179741
|
+
"type": "object"
|
|
179742
|
+
},
|
|
178210
179743
|
"clip": {
|
|
178211
179744
|
"anyOf": [
|
|
178212
179745
|
{
|
|
@@ -179480,21 +181013,39 @@
|
|
|
179480
181013
|
"stddev": {
|
|
179481
181014
|
"anyOf": [
|
|
179482
181015
|
{
|
|
179483
|
-
"
|
|
179484
|
-
|
|
179485
|
-
|
|
179486
|
-
|
|
179487
|
-
|
|
179488
|
-
|
|
181016
|
+
"anyOf": [
|
|
181017
|
+
{
|
|
181018
|
+
"type": "string"
|
|
181019
|
+
},
|
|
181020
|
+
{
|
|
181021
|
+
"type": "number"
|
|
181022
|
+
},
|
|
181023
|
+
{
|
|
181024
|
+
"type": "boolean"
|
|
181025
|
+
},
|
|
181026
|
+
{
|
|
181027
|
+
"$ref": "#/definitions/ParamRef"
|
|
181028
|
+
}
|
|
181029
|
+
],
|
|
181030
|
+
"description": "A transform argument."
|
|
179489
181031
|
},
|
|
179490
181032
|
{
|
|
179491
181033
|
"items": {
|
|
179492
|
-
"
|
|
179493
|
-
|
|
179494
|
-
|
|
179495
|
-
|
|
179496
|
-
|
|
179497
|
-
|
|
181034
|
+
"anyOf": [
|
|
181035
|
+
{
|
|
181036
|
+
"type": "string"
|
|
181037
|
+
},
|
|
181038
|
+
{
|
|
181039
|
+
"type": "number"
|
|
181040
|
+
},
|
|
181041
|
+
{
|
|
181042
|
+
"type": "boolean"
|
|
181043
|
+
},
|
|
181044
|
+
{
|
|
181045
|
+
"$ref": "#/definitions/ParamRef"
|
|
181046
|
+
}
|
|
181047
|
+
],
|
|
181048
|
+
"description": "A transform argument."
|
|
179498
181049
|
},
|
|
179499
181050
|
"maxItems": 1,
|
|
179500
181051
|
"minItems": 1,
|
|
@@ -179576,21 +181127,39 @@
|
|
|
179576
181127
|
"stddevPop": {
|
|
179577
181128
|
"anyOf": [
|
|
179578
181129
|
{
|
|
179579
|
-
"
|
|
179580
|
-
|
|
179581
|
-
|
|
179582
|
-
|
|
179583
|
-
|
|
179584
|
-
|
|
181130
|
+
"anyOf": [
|
|
181131
|
+
{
|
|
181132
|
+
"type": "string"
|
|
181133
|
+
},
|
|
181134
|
+
{
|
|
181135
|
+
"type": "number"
|
|
181136
|
+
},
|
|
181137
|
+
{
|
|
181138
|
+
"type": "boolean"
|
|
181139
|
+
},
|
|
181140
|
+
{
|
|
181141
|
+
"$ref": "#/definitions/ParamRef"
|
|
181142
|
+
}
|
|
181143
|
+
],
|
|
181144
|
+
"description": "A transform argument."
|
|
179585
181145
|
},
|
|
179586
181146
|
{
|
|
179587
181147
|
"items": {
|
|
179588
|
-
"
|
|
179589
|
-
|
|
179590
|
-
|
|
179591
|
-
|
|
179592
|
-
|
|
179593
|
-
|
|
181148
|
+
"anyOf": [
|
|
181149
|
+
{
|
|
181150
|
+
"type": "string"
|
|
181151
|
+
},
|
|
181152
|
+
{
|
|
181153
|
+
"type": "number"
|
|
181154
|
+
},
|
|
181155
|
+
{
|
|
181156
|
+
"type": "boolean"
|
|
181157
|
+
},
|
|
181158
|
+
{
|
|
181159
|
+
"$ref": "#/definitions/ParamRef"
|
|
181160
|
+
}
|
|
181161
|
+
],
|
|
181162
|
+
"description": "A transform argument."
|
|
179594
181163
|
},
|
|
179595
181164
|
"maxItems": 1,
|
|
179596
181165
|
"minItems": 1,
|
|
@@ -179672,21 +181241,39 @@
|
|
|
179672
181241
|
"sum": {
|
|
179673
181242
|
"anyOf": [
|
|
179674
181243
|
{
|
|
179675
|
-
"
|
|
179676
|
-
|
|
179677
|
-
|
|
179678
|
-
|
|
179679
|
-
|
|
179680
|
-
|
|
181244
|
+
"anyOf": [
|
|
181245
|
+
{
|
|
181246
|
+
"type": "string"
|
|
181247
|
+
},
|
|
181248
|
+
{
|
|
181249
|
+
"type": "number"
|
|
181250
|
+
},
|
|
181251
|
+
{
|
|
181252
|
+
"type": "boolean"
|
|
181253
|
+
},
|
|
181254
|
+
{
|
|
181255
|
+
"$ref": "#/definitions/ParamRef"
|
|
181256
|
+
}
|
|
181257
|
+
],
|
|
181258
|
+
"description": "A transform argument."
|
|
179681
181259
|
},
|
|
179682
181260
|
{
|
|
179683
181261
|
"items": {
|
|
179684
|
-
"
|
|
179685
|
-
|
|
179686
|
-
|
|
179687
|
-
|
|
179688
|
-
|
|
179689
|
-
|
|
181262
|
+
"anyOf": [
|
|
181263
|
+
{
|
|
181264
|
+
"type": "string"
|
|
181265
|
+
},
|
|
181266
|
+
{
|
|
181267
|
+
"type": "number"
|
|
181268
|
+
},
|
|
181269
|
+
{
|
|
181270
|
+
"type": "boolean"
|
|
181271
|
+
},
|
|
181272
|
+
{
|
|
181273
|
+
"$ref": "#/definitions/ParamRef"
|
|
181274
|
+
}
|
|
181275
|
+
],
|
|
181276
|
+
"description": "A transform argument."
|
|
179690
181277
|
},
|
|
179691
181278
|
"maxItems": 1,
|
|
179692
181279
|
"minItems": 1,
|
|
@@ -179754,8 +181341,15 @@
|
|
|
179754
181341
|
"description": "A selection to filter the database table indicated by the `from` property."
|
|
179755
181342
|
},
|
|
179756
181343
|
"from": {
|
|
179757
|
-
"
|
|
179758
|
-
|
|
181344
|
+
"anyOf": [
|
|
181345
|
+
{
|
|
181346
|
+
"type": "string"
|
|
181347
|
+
},
|
|
181348
|
+
{
|
|
181349
|
+
"$ref": "#/definitions/ParamRef"
|
|
181350
|
+
}
|
|
181351
|
+
],
|
|
181352
|
+
"description": "The name of a database table to use as a data source for this widget."
|
|
179759
181353
|
},
|
|
179760
181354
|
"height": {
|
|
179761
181355
|
"description": "The height of the table widget, in pixels.",
|
|
@@ -179825,6 +181419,13 @@
|
|
|
179825
181419
|
"$ref": "#/definitions/ChannelValue",
|
|
179826
181420
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
179827
181421
|
},
|
|
181422
|
+
"channels": {
|
|
181423
|
+
"additionalProperties": {
|
|
181424
|
+
"type": "string"
|
|
181425
|
+
},
|
|
181426
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
181427
|
+
"type": "object"
|
|
181428
|
+
},
|
|
179828
181429
|
"clip": {
|
|
179829
181430
|
"anyOf": [
|
|
179830
181431
|
{
|
|
@@ -181150,6 +182751,13 @@
|
|
|
181150
182751
|
"$ref": "#/definitions/ChannelValue",
|
|
181151
182752
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
181152
182753
|
},
|
|
182754
|
+
"channels": {
|
|
182755
|
+
"additionalProperties": {
|
|
182756
|
+
"type": "string"
|
|
182757
|
+
},
|
|
182758
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
182759
|
+
"type": "object"
|
|
182760
|
+
},
|
|
181153
182761
|
"clip": {
|
|
181154
182762
|
"anyOf": [
|
|
181155
182763
|
{
|
|
@@ -182486,6 +184094,13 @@
|
|
|
182486
184094
|
"$ref": "#/definitions/ChannelValue",
|
|
182487
184095
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
182488
184096
|
},
|
|
184097
|
+
"channels": {
|
|
184098
|
+
"additionalProperties": {
|
|
184099
|
+
"type": "string"
|
|
184100
|
+
},
|
|
184101
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
184102
|
+
"type": "object"
|
|
184103
|
+
},
|
|
182489
184104
|
"clip": {
|
|
182490
184105
|
"anyOf": [
|
|
182491
184106
|
{
|
|
@@ -183815,6 +185430,13 @@
|
|
|
183815
185430
|
"$ref": "#/definitions/ChannelValue",
|
|
183816
185431
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
183817
185432
|
},
|
|
185433
|
+
"channels": {
|
|
185434
|
+
"additionalProperties": {
|
|
185435
|
+
"type": "string"
|
|
185436
|
+
},
|
|
185437
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
185438
|
+
"type": "object"
|
|
185439
|
+
},
|
|
183818
185440
|
"clip": {
|
|
183819
185441
|
"anyOf": [
|
|
183820
185442
|
{
|
|
@@ -185058,6 +186680,13 @@
|
|
|
185058
186680
|
"$ref": "#/definitions/ChannelValue",
|
|
185059
186681
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
185060
186682
|
},
|
|
186683
|
+
"channels": {
|
|
186684
|
+
"additionalProperties": {
|
|
186685
|
+
"type": "string"
|
|
186686
|
+
},
|
|
186687
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
186688
|
+
"type": "object"
|
|
186689
|
+
},
|
|
185061
186690
|
"clip": {
|
|
185062
186691
|
"anyOf": [
|
|
185063
186692
|
{
|
|
@@ -186318,7 +187947,7 @@
|
|
|
186318
187947
|
"type": "array"
|
|
186319
187948
|
},
|
|
186320
187949
|
"peers": {
|
|
186321
|
-
"description": "A flag indicating if peer (sibling) marks are when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
187950
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
186322
187951
|
"type": "boolean"
|
|
186323
187952
|
},
|
|
186324
187953
|
"select": {
|
|
@@ -186343,7 +187972,7 @@
|
|
|
186343
187972
|
"description": "The output selection. A clause of the form `(field = value1) OR (field = value2) ...` is added for the currently selected values."
|
|
186344
187973
|
},
|
|
186345
187974
|
"peers": {
|
|
186346
|
-
"description": "A flag indicating if peer (sibling) marks are when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
187975
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
186347
187976
|
"type": "boolean"
|
|
186348
187977
|
},
|
|
186349
187978
|
"select": {
|
|
@@ -186367,7 +187996,7 @@
|
|
|
186367
187996
|
"description": "The output selection. A clause of the form `(field = value1) OR (field = value2) ...` is added for the currently selected values."
|
|
186368
187997
|
},
|
|
186369
187998
|
"peers": {
|
|
186370
|
-
"description": "A flag indicating if peer (sibling) marks are when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
187999
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
186371
188000
|
"type": "boolean"
|
|
186372
188001
|
},
|
|
186373
188002
|
"select": {
|
|
@@ -186391,7 +188020,7 @@
|
|
|
186391
188020
|
"description": "The output selection. A clause of the form `(field = value1) OR (field = value2) ...` is added for the currently selected values."
|
|
186392
188021
|
},
|
|
186393
188022
|
"peers": {
|
|
186394
|
-
"description": "A flag indicating if peer (sibling) marks are when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
188023
|
+
"description": "A flag indicating if peer (sibling) marks are excluded when cross-filtering (default `true`). If set, peer marks will not be filtered by this interactor's selection in cross-filtering setups.",
|
|
186395
188024
|
"type": "boolean"
|
|
186396
188025
|
},
|
|
186397
188026
|
"select": {
|
|
@@ -186532,21 +188161,39 @@
|
|
|
186532
188161
|
"varPop": {
|
|
186533
188162
|
"anyOf": [
|
|
186534
188163
|
{
|
|
186535
|
-
"
|
|
186536
|
-
|
|
186537
|
-
|
|
186538
|
-
|
|
186539
|
-
|
|
186540
|
-
|
|
188164
|
+
"anyOf": [
|
|
188165
|
+
{
|
|
188166
|
+
"type": "string"
|
|
188167
|
+
},
|
|
188168
|
+
{
|
|
188169
|
+
"type": "number"
|
|
188170
|
+
},
|
|
188171
|
+
{
|
|
188172
|
+
"type": "boolean"
|
|
188173
|
+
},
|
|
188174
|
+
{
|
|
188175
|
+
"$ref": "#/definitions/ParamRef"
|
|
188176
|
+
}
|
|
188177
|
+
],
|
|
188178
|
+
"description": "A transform argument."
|
|
186541
188179
|
},
|
|
186542
188180
|
{
|
|
186543
188181
|
"items": {
|
|
186544
|
-
"
|
|
186545
|
-
|
|
186546
|
-
|
|
186547
|
-
|
|
186548
|
-
|
|
186549
|
-
|
|
188182
|
+
"anyOf": [
|
|
188183
|
+
{
|
|
188184
|
+
"type": "string"
|
|
188185
|
+
},
|
|
188186
|
+
{
|
|
188187
|
+
"type": "number"
|
|
188188
|
+
},
|
|
188189
|
+
{
|
|
188190
|
+
"type": "boolean"
|
|
188191
|
+
},
|
|
188192
|
+
{
|
|
188193
|
+
"$ref": "#/definitions/ParamRef"
|
|
188194
|
+
}
|
|
188195
|
+
],
|
|
188196
|
+
"description": "A transform argument."
|
|
186550
188197
|
},
|
|
186551
188198
|
"maxItems": 1,
|
|
186552
188199
|
"minItems": 1,
|
|
@@ -186628,21 +188275,39 @@
|
|
|
186628
188275
|
"variance": {
|
|
186629
188276
|
"anyOf": [
|
|
186630
188277
|
{
|
|
186631
|
-
"
|
|
186632
|
-
|
|
186633
|
-
|
|
186634
|
-
|
|
186635
|
-
|
|
186636
|
-
|
|
188278
|
+
"anyOf": [
|
|
188279
|
+
{
|
|
188280
|
+
"type": "string"
|
|
188281
|
+
},
|
|
188282
|
+
{
|
|
188283
|
+
"type": "number"
|
|
188284
|
+
},
|
|
188285
|
+
{
|
|
188286
|
+
"type": "boolean"
|
|
188287
|
+
},
|
|
188288
|
+
{
|
|
188289
|
+
"$ref": "#/definitions/ParamRef"
|
|
188290
|
+
}
|
|
188291
|
+
],
|
|
188292
|
+
"description": "A transform argument."
|
|
186637
188293
|
},
|
|
186638
188294
|
{
|
|
186639
188295
|
"items": {
|
|
186640
|
-
"
|
|
186641
|
-
|
|
186642
|
-
|
|
186643
|
-
|
|
186644
|
-
|
|
186645
|
-
|
|
188296
|
+
"anyOf": [
|
|
188297
|
+
{
|
|
188298
|
+
"type": "string"
|
|
188299
|
+
},
|
|
188300
|
+
{
|
|
188301
|
+
"type": "number"
|
|
188302
|
+
},
|
|
188303
|
+
{
|
|
188304
|
+
"type": "boolean"
|
|
188305
|
+
},
|
|
188306
|
+
{
|
|
188307
|
+
"$ref": "#/definitions/ParamRef"
|
|
188308
|
+
}
|
|
188309
|
+
],
|
|
188310
|
+
"description": "A transform argument."
|
|
186646
188311
|
},
|
|
186647
188312
|
"maxItems": 1,
|
|
186648
188313
|
"minItems": 1,
|
|
@@ -186707,6 +188372,13 @@
|
|
|
186707
188372
|
"$ref": "#/definitions/ChannelValue",
|
|
186708
188373
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
186709
188374
|
},
|
|
188375
|
+
"channels": {
|
|
188376
|
+
"additionalProperties": {
|
|
188377
|
+
"type": "string"
|
|
188378
|
+
},
|
|
188379
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
188380
|
+
"type": "object"
|
|
188381
|
+
},
|
|
186710
188382
|
"clip": {
|
|
186711
188383
|
"anyOf": [
|
|
186712
188384
|
{
|
|
@@ -187906,6 +189578,13 @@
|
|
|
187906
189578
|
"$ref": "#/definitions/ChannelValue",
|
|
187907
189579
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
187908
189580
|
},
|
|
189581
|
+
"channels": {
|
|
189582
|
+
"additionalProperties": {
|
|
189583
|
+
"type": "string"
|
|
189584
|
+
},
|
|
189585
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
189586
|
+
"type": "object"
|
|
189587
|
+
},
|
|
187909
189588
|
"clip": {
|
|
187910
189589
|
"anyOf": [
|
|
187911
189590
|
{
|
|
@@ -189093,6 +190772,13 @@
|
|
|
189093
190772
|
"$ref": "#/definitions/ChannelValue",
|
|
189094
190773
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
189095
190774
|
},
|
|
190775
|
+
"channels": {
|
|
190776
|
+
"additionalProperties": {
|
|
190777
|
+
"type": "string"
|
|
190778
|
+
},
|
|
190779
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
190780
|
+
"type": "object"
|
|
190781
|
+
},
|
|
189096
190782
|
"clip": {
|
|
189097
190783
|
"anyOf": [
|
|
189098
190784
|
{
|
|
@@ -190260,6 +191946,13 @@
|
|
|
190260
191946
|
"$ref": "#/definitions/ChannelValue",
|
|
190261
191947
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
190262
191948
|
},
|
|
191949
|
+
"channels": {
|
|
191950
|
+
"additionalProperties": {
|
|
191951
|
+
"type": "string"
|
|
191952
|
+
},
|
|
191953
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
191954
|
+
"type": "object"
|
|
191955
|
+
},
|
|
190263
191956
|
"clip": {
|
|
190264
191957
|
"anyOf": [
|
|
190265
191958
|
{
|
|
@@ -191496,6 +193189,13 @@
|
|
|
191496
193189
|
"$ref": "#/definitions/ChannelValue",
|
|
191497
193190
|
"description": "The [aria-label][1]; a channel specifying short textual labels representing the value in the accessibility tree.\n\n[1]: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label"
|
|
191498
193191
|
},
|
|
193192
|
+
"channels": {
|
|
193193
|
+
"additionalProperties": {
|
|
193194
|
+
"type": "string"
|
|
193195
|
+
},
|
|
193196
|
+
"description": "Additional named channels, for example to include in a tooltip. Consists of (channel name, data field name) key-value pairs.",
|
|
193197
|
+
"type": "object"
|
|
193198
|
+
},
|
|
191499
193199
|
"clip": {
|
|
191500
193200
|
"anyOf": [
|
|
191501
193201
|
{
|