@uwdata/mosaic-spec 0.11.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.
Files changed (37) hide show
  1. package/dist/mosaic-schema.json +2105 -422
  2. package/dist/mosaic-spec.js +4108 -2629
  3. package/dist/mosaic-spec.min.js +24 -24
  4. package/dist/types/ast/ColumnParamRefNode.d.ts +8 -0
  5. package/dist/types/ast/ExpressionNode.d.ts +2 -4
  6. package/dist/types/constants.d.ts +1 -1
  7. package/dist/types/spec/Input.d.ts +1 -1
  8. package/dist/types/spec/PlotAttribute.d.ts +11 -5
  9. package/dist/types/spec/PlotFrom.d.ts +1 -1
  10. package/dist/types/spec/PlotInteractor.d.ts +2 -1
  11. package/dist/types/spec/Transform.d.ts +8 -2
  12. package/dist/types/spec/interactors/BrushStyles.d.ts +27 -0
  13. package/dist/types/spec/interactors/Interval1D.d.ts +6 -27
  14. package/dist/types/spec/interactors/Interval2D.d.ts +6 -5
  15. package/dist/types/spec/interactors/Region.d.ts +32 -0
  16. package/dist/types/spec/interactors/Toggle.d.ts +3 -3
  17. package/dist/types/spec/marks/Marks.d.ts +5 -0
  18. package/package.json +6 -6
  19. package/src/ast/ColumnParamRefNode.js +21 -0
  20. package/src/ast/DataNode.js +3 -3
  21. package/src/ast/ExpressionNode.js +17 -22
  22. package/src/ast/PlotFromNode.js +6 -6
  23. package/src/ast/PlotMarkNode.js +2 -2
  24. package/src/ast/TransformNode.js +14 -12
  25. package/src/config/transforms.js +1 -0
  26. package/src/constants.js +1 -1
  27. package/src/spec/Input.ts +1 -1
  28. package/src/spec/PlotAttribute.ts +13 -5
  29. package/src/spec/PlotFrom.ts +1 -1
  30. package/src/spec/PlotInteractor.ts +7 -5
  31. package/src/spec/Transform.ts +10 -1
  32. package/src/spec/interactors/BrushStyles.ts +27 -0
  33. package/src/spec/interactors/Interval1D.ts +6 -28
  34. package/src/spec/interactors/Interval2D.ts +6 -5
  35. package/src/spec/interactors/Region.ts +34 -0
  36. package/src/spec/interactors/Toggle.ts +3 -3
  37. package/src/spec/marks/Marks.ts +6 -0
@@ -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
- "description": "A transform argument.",
3650
- "type": [
3651
- "string",
3652
- "number",
3653
- "boolean"
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
- "description": "A transform argument.",
3734
- "type": [
3735
- "string",
3736
- "number",
3737
- "boolean"
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
- "description": "A transform argument.",
5056
- "type": [
5057
- "string",
5058
- "number",
5059
- "boolean"
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
- "description": "A transform argument.",
5065
- "type": [
5066
- "string",
5067
- "number",
5068
- "boolean"
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
- "description": "A transform argument.",
14372
- "type": [
14373
- "string",
14374
- "number",
14375
- "boolean"
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
- "description": "A transform argument.",
14381
- "type": [
14382
- "string",
14383
- "number",
14384
- "boolean"
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"
@@ -15999,6 +16127,13 @@
15999
16127
  "$ref": "#/definitions/ChannelValue",
16000
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"
16001
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
+ },
16002
16137
  "clip": {
16003
16138
  "anyOf": [
16004
16139
  {
@@ -17208,6 +17343,13 @@
17208
17343
  "$ref": "#/definitions/ChannelValue",
17209
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"
17210
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
+ },
17211
17353
  "clip": {
17212
17354
  "anyOf": [
17213
17355
  {
@@ -18417,6 +18559,13 @@
18417
18559
  "$ref": "#/definitions/ChannelValue",
18418
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"
18419
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
+ },
18420
18569
  "clip": {
18421
18570
  "anyOf": [
18422
18571
  {
@@ -19602,21 +19751,39 @@
19602
19751
  "centroid": {
19603
19752
  "anyOf": [
19604
19753
  {
19605
- "description": "A transform argument.",
19606
- "type": [
19607
- "string",
19608
- "number",
19609
- "boolean"
19610
- ]
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."
19611
19769
  },
19612
19770
  {
19613
19771
  "items": {
19614
- "description": "A transform argument.",
19615
- "type": [
19616
- "string",
19617
- "number",
19618
- "boolean"
19619
- ]
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."
19620
19787
  },
19621
19788
  "maxItems": 1,
19622
19789
  "minItems": 1,
@@ -19637,21 +19804,39 @@
19637
19804
  "centroidX": {
19638
19805
  "anyOf": [
19639
19806
  {
19640
- "description": "A transform argument.",
19641
- "type": [
19642
- "string",
19643
- "number",
19644
- "boolean"
19645
- ]
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."
19646
19822
  },
19647
19823
  {
19648
19824
  "items": {
19649
- "description": "A transform argument.",
19650
- "type": [
19651
- "string",
19652
- "number",
19653
- "boolean"
19654
- ]
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."
19655
19840
  },
19656
19841
  "maxItems": 1,
19657
19842
  "minItems": 1,
@@ -19672,21 +19857,39 @@
19672
19857
  "centroidY": {
19673
19858
  "anyOf": [
19674
19859
  {
19675
- "description": "A transform argument.",
19676
- "type": [
19677
- "string",
19678
- "number",
19679
- "boolean"
19680
- ]
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."
19681
19875
  },
19682
19876
  {
19683
19877
  "items": {
19684
- "description": "A transform argument.",
19685
- "type": [
19686
- "string",
19687
- "number",
19688
- "boolean"
19689
- ]
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."
19690
19893
  },
19691
19894
  "maxItems": 1,
19692
19895
  "minItems": 1,
@@ -20173,6 +20376,13 @@
20173
20376
  "$ref": "#/definitions/ChannelValue",
20174
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"
20175
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
+ },
20176
20386
  "clip": {
20177
20387
  "anyOf": [
20178
20388
  {
@@ -21620,11 +21830,67 @@
21620
21830
  ],
21621
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"
21622
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
+ },
21623
21886
  "ColumnTransform": {
21624
21887
  "anyOf": [
21625
21888
  {
21626
21889
  "$ref": "#/definitions/Bin"
21627
21890
  },
21891
+ {
21892
+ "$ref": "#/definitions/Column"
21893
+ },
21628
21894
  {
21629
21895
  "$ref": "#/definitions/DateMonth"
21630
21896
  },
@@ -21761,6 +22027,13 @@
21761
22027
  ],
21762
22028
  "description": "The kernel density bandwidth for smoothing, in pixels."
21763
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
+ },
21764
22037
  "clip": {
21765
22038
  "anyOf": [
21766
22039
  {
@@ -22953,21 +23226,39 @@
22953
23226
  {
22954
23227
  "anyOf": [
22955
23228
  {
22956
- "description": "A transform argument.",
22957
- "type": [
22958
- "string",
22959
- "number",
22960
- "boolean"
22961
- ]
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."
22962
23244
  },
22963
23245
  {
22964
23246
  "items": {
22965
- "description": "A transform argument.",
22966
- "type": [
22967
- "string",
22968
- "number",
22969
- "boolean"
22970
- ]
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."
22971
23262
  },
22972
23263
  "maxItems": 1,
22973
23264
  "minItems": 1,
@@ -23590,21 +23881,39 @@
23590
23881
  "dateDay": {
23591
23882
  "anyOf": [
23592
23883
  {
23593
- "description": "A transform argument.",
23594
- "type": [
23595
- "string",
23596
- "number",
23597
- "boolean"
23598
- ]
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."
23599
23899
  },
23600
23900
  {
23601
23901
  "items": {
23602
- "description": "A transform argument.",
23603
- "type": [
23604
- "string",
23605
- "number",
23606
- "boolean"
23607
- ]
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."
23608
23917
  },
23609
23918
  "maxItems": 1,
23610
23919
  "minItems": 1,
@@ -23625,21 +23934,39 @@
23625
23934
  "dateMonth": {
23626
23935
  "anyOf": [
23627
23936
  {
23628
- "description": "A transform argument.",
23629
- "type": [
23630
- "string",
23631
- "number",
23632
- "boolean"
23633
- ]
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."
23634
23952
  },
23635
23953
  {
23636
23954
  "items": {
23637
- "description": "A transform argument.",
23638
- "type": [
23639
- "string",
23640
- "number",
23641
- "boolean"
23642
- ]
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."
23643
23970
  },
23644
23971
  "maxItems": 1,
23645
23972
  "minItems": 1,
@@ -23660,21 +23987,39 @@
23660
23987
  "dateMonthDay": {
23661
23988
  "anyOf": [
23662
23989
  {
23663
- "description": "A transform argument.",
23664
- "type": [
23665
- "string",
23666
- "number",
23667
- "boolean"
23668
- ]
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."
23669
24005
  },
23670
24006
  {
23671
24007
  "items": {
23672
- "description": "A transform argument.",
23673
- "type": [
23674
- "string",
23675
- "number",
23676
- "boolean"
23677
- ]
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."
23678
24023
  },
23679
24024
  "maxItems": 1,
23680
24025
  "minItems": 1,
@@ -23719,6 +24064,13 @@
23719
24064
  "$ref": "#/definitions/ChannelValue",
23720
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"
23721
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
+ },
23722
24074
  "clip": {
23723
24075
  "anyOf": [
23724
24076
  {
@@ -24955,6 +25307,13 @@
24955
25307
  "$ref": "#/definitions/ChannelValue",
24956
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"
24957
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
+ },
24958
25317
  "clip": {
24959
25318
  "anyOf": [
24960
25319
  {
@@ -26202,6 +26561,13 @@
26202
26561
  ],
26203
26562
  "description": "The kernel density bandwidth for smoothing, in pixels."
26204
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
+ },
26205
26571
  "clip": {
26206
26572
  "anyOf": [
26207
26573
  {
@@ -27503,6 +27869,13 @@
27503
27869
  ],
27504
27870
  "description": "The kernel density bandwidth for smoothing, in pixels."
27505
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
+ },
27506
27879
  "clip": {
27507
27880
  "anyOf": [
27508
27881
  {
@@ -28945,6 +29318,13 @@
28945
29318
  ],
28946
29319
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
28947
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
+ },
28948
29328
  "clip": {
28949
29329
  "anyOf": [
28950
29330
  {
@@ -30148,6 +30528,13 @@
30148
30528
  ],
30149
30529
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
30150
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
+ },
30151
30538
  "clip": {
30152
30539
  "anyOf": [
30153
30540
  {
@@ -31411,6 +31798,13 @@
31411
31798
  ],
31412
31799
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
31413
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
+ },
31414
31808
  "clip": {
31415
31809
  "anyOf": [
31416
31810
  {
@@ -32617,6 +33011,13 @@
32617
33011
  ],
32618
33012
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
32619
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
+ },
32620
33021
  "clip": {
32621
33022
  "anyOf": [
32622
33023
  {
@@ -33971,6 +34372,13 @@
33971
34372
  ],
33972
34373
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
33973
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
+ },
33974
34382
  "clip": {
33975
34383
  "anyOf": [
33976
34384
  {
@@ -35173,6 +35581,13 @@
35173
35581
  ],
35174
35582
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
35175
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
+ },
35176
35591
  "clip": {
35177
35592
  "anyOf": [
35178
35593
  {
@@ -36436,6 +36851,13 @@
36436
36851
  ],
36437
36852
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
36438
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
+ },
36439
36861
  "clip": {
36440
36862
  "anyOf": [
36441
36863
  {
@@ -37647,6 +38069,13 @@
37647
38069
  ],
37648
38070
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
37649
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
+ },
37650
38079
  "clip": {
37651
38080
  "anyOf": [
37652
38081
  {
@@ -38989,6 +39418,13 @@
38989
39418
  "$ref": "#/definitions/ChannelValue",
38990
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"
38991
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
+ },
38992
39428
  "clip": {
38993
39429
  "anyOf": [
38994
39430
  {
@@ -40172,6 +40608,13 @@
40172
40608
  "$ref": "#/definitions/ChannelValue",
40173
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"
40174
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
+ },
40175
40618
  "clip": {
40176
40619
  "anyOf": [
40177
40620
  {
@@ -41366,6 +41809,13 @@
41366
41809
  "$ref": "#/definitions/ChannelValue",
41367
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"
41368
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
+ },
41369
41819
  "clip": {
41370
41820
  "anyOf": [
41371
41821
  {
@@ -42560,6 +43010,13 @@
42560
43010
  "$ref": "#/definitions/ChannelValue",
42561
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"
42562
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
+ },
42563
43020
  "ci": {
42564
43021
  "anyOf": [
42565
43022
  {
@@ -43786,6 +44243,13 @@
43786
44243
  "$ref": "#/definitions/ChannelValue",
43787
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"
43788
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
+ },
43789
44253
  "ci": {
43790
44254
  "anyOf": [
43791
44255
  {
@@ -44991,21 +45455,39 @@
44991
45455
  "first": {
44992
45456
  "anyOf": [
44993
45457
  {
44994
- "description": "A transform argument.",
44995
- "type": [
44996
- "string",
44997
- "number",
44998
- "boolean"
44999
- ]
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."
45000
45473
  },
45001
45474
  {
45002
45475
  "items": {
45003
- "description": "A transform argument.",
45004
- "type": [
45005
- "string",
45006
- "number",
45007
- "boolean"
45008
- ]
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."
45009
45491
  },
45010
45492
  "maxItems": 1,
45011
45493
  "minItems": 1,
@@ -45084,21 +45566,39 @@
45084
45566
  "first_value": {
45085
45567
  "anyOf": [
45086
45568
  {
45087
- "description": "A transform argument.",
45088
- "type": [
45089
- "string",
45090
- "number",
45091
- "boolean"
45092
- ]
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."
45093
45584
  },
45094
45585
  {
45095
45586
  "items": {
45096
- "description": "A transform argument.",
45097
- "type": [
45098
- "string",
45099
- "number",
45100
- "boolean"
45101
- ]
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."
45102
45602
  },
45103
45603
  "maxItems": 1,
45104
45604
  "minItems": 1,
@@ -45233,6 +45733,13 @@
45233
45733
  "$ref": "#/definitions/ChannelValue",
45234
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"
45235
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
+ },
45236
45743
  "clip": {
45237
45744
  "anyOf": [
45238
45745
  {
@@ -46444,6 +46951,13 @@
46444
46951
  "$ref": "#/definitions/ChannelValue",
46445
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"
46446
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
+ },
46447
46961
  "clip": {
46448
46962
  "anyOf": [
46449
46963
  {
@@ -47553,21 +48067,39 @@
47553
48067
  "geojson": {
47554
48068
  "anyOf": [
47555
48069
  {
47556
- "description": "A transform argument.",
47557
- "type": [
47558
- "string",
47559
- "number",
47560
- "boolean"
47561
- ]
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."
47562
48085
  },
47563
48086
  {
47564
48087
  "items": {
47565
- "description": "A transform argument.",
47566
- "type": [
47567
- "string",
47568
- "number",
47569
- "boolean"
47570
- ]
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."
47571
48103
  },
47572
48104
  "maxItems": 1,
47573
48105
  "minItems": 1,
@@ -47612,6 +48144,13 @@
47612
48144
  "$ref": "#/definitions/ChannelValue",
47613
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"
47614
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
+ },
47615
48154
  "clip": {
47616
48155
  "anyOf": [
47617
48156
  {
@@ -48749,6 +49288,13 @@
48749
49288
  "$ref": "#/definitions/ChannelValue",
48750
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"
48751
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
+ },
48752
49298
  "clip": {
48753
49299
  "anyOf": [
48754
49300
  {
@@ -50070,6 +50616,13 @@
50070
50616
  "$ref": "#/definitions/ChannelValue",
50071
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"
50072
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
+ },
50073
50626
  "clip": {
50074
50627
  "anyOf": [
50075
50628
  {
@@ -51402,6 +51955,13 @@
51402
51955
  "$ref": "#/definitions/ChannelValue",
51403
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"
51404
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
+ },
51405
51965
  "clip": {
51406
51966
  "anyOf": [
51407
51967
  {
@@ -52723,6 +53283,13 @@
52723
53283
  "$ref": "#/definitions/ChannelValue",
52724
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"
52725
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
+ },
52726
53293
  "clip": {
52727
53294
  "anyOf": [
52728
53295
  {
@@ -54065,6 +54632,13 @@
54065
54632
  ],
54066
54633
  "description": "The kernel density bandwidth for smoothing, in pixels."
54067
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
+ },
54068
54642
  "clip": {
54069
54643
  "anyOf": [
54070
54644
  {
@@ -55260,6 +55834,13 @@
55260
55834
  "$ref": "#/definitions/ChannelValue",
55261
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"
55262
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
+ },
55263
55844
  "clip": {
55264
55845
  "anyOf": [
55265
55846
  {
@@ -56454,6 +57035,13 @@
56454
57035
  ],
56455
57036
  "description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. If also using a hexgrid mark, use matching **binWidth** values."
56456
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
+ },
56457
57045
  "clip": {
56458
57046
  "anyOf": [
56459
57047
  {
@@ -57822,6 +58410,13 @@
57822
58410
  ],
57823
58411
  "description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. Should match the **binWidth** of the hexbin mark."
57824
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
+ },
57825
58420
  "clip": {
57826
58421
  "anyOf": [
57827
58422
  {
@@ -58975,6 +59570,13 @@
58975
59570
  "$ref": "#/definitions/ChannelValue",
58976
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"
58977
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
+ },
58978
59580
  "clip": {
58979
59581
  "anyOf": [
58980
59582
  {
@@ -60210,6 +60812,13 @@
60210
60812
  "$ref": "#/definitions/ChannelValue",
60211
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"
60212
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
+ },
60213
60822
  "clip": {
60214
60823
  "anyOf": [
60215
60824
  {
@@ -61437,11 +62046,11 @@
61437
62046
  "type": "string"
61438
62047
  },
61439
62048
  "peers": {
61440
- "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.",
61441
62050
  "type": "boolean"
61442
62051
  },
61443
62052
  "pixelSize": {
61444
- "description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of data cube indexes.",
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.",
61445
62054
  "type": "number"
61446
62055
  },
61447
62056
  "select": {
@@ -61469,11 +62078,11 @@
61469
62078
  "description": "CSS styles for the brush (SVG `rect`) element."
61470
62079
  },
61471
62080
  "peers": {
61472
- "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.",
61473
62082
  "type": "boolean"
61474
62083
  },
61475
62084
  "pixelSize": {
61476
- "description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of data cube indexes.",
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.",
61477
62086
  "type": "number"
61478
62087
  },
61479
62088
  "select": {
@@ -61513,11 +62122,11 @@
61513
62122
  "type": "string"
61514
62123
  },
61515
62124
  "peers": {
61516
- "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.",
61517
62126
  "type": "boolean"
61518
62127
  },
61519
62128
  "pixelSize": {
61520
- "description": "The size of an interative pixel (default `1`). Larger pixel sizes reduce the brush resolution, which can reduce the size of data cube indexes.",
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.",
61521
62130
  "type": "number"
61522
62131
  },
61523
62132
  "select": {
@@ -61556,21 +62165,39 @@
61556
62165
  "lag": {
61557
62166
  "anyOf": [
61558
62167
  {
61559
- "description": "A transform argument.",
61560
- "type": [
61561
- "string",
61562
- "number",
61563
- "boolean"
61564
- ]
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."
61565
62183
  },
61566
62184
  {
61567
62185
  "items": {
61568
- "description": "A transform argument.",
61569
- "type": [
61570
- "string",
61571
- "number",
61572
- "boolean"
61573
- ]
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."
61574
62201
  },
61575
62202
  "maxItems": 3,
61576
62203
  "minItems": 1,
@@ -61652,21 +62279,39 @@
61652
62279
  "last": {
61653
62280
  "anyOf": [
61654
62281
  {
61655
- "description": "A transform argument.",
61656
- "type": [
61657
- "string",
61658
- "number",
61659
- "boolean"
61660
- ]
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."
61661
62297
  },
61662
62298
  {
61663
62299
  "items": {
61664
- "description": "A transform argument.",
61665
- "type": [
61666
- "string",
61667
- "number",
61668
- "boolean"
61669
- ]
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."
61670
62315
  },
61671
62316
  "maxItems": 1,
61672
62317
  "minItems": 1,
@@ -61745,21 +62390,39 @@
61745
62390
  "last_value": {
61746
62391
  "anyOf": [
61747
62392
  {
61748
- "description": "A transform argument.",
61749
- "type": [
61750
- "string",
61751
- "number",
61752
- "boolean"
61753
- ]
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."
61754
62408
  },
61755
62409
  {
61756
62410
  "items": {
61757
- "description": "A transform argument.",
61758
- "type": [
61759
- "string",
61760
- "number",
61761
- "boolean"
61762
- ]
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."
61763
62426
  },
61764
62427
  "maxItems": 1,
61765
62428
  "minItems": 1,
@@ -61838,21 +62501,39 @@
61838
62501
  "lag": {
61839
62502
  "anyOf": [
61840
62503
  {
61841
- "description": "A transform argument.",
61842
- "type": [
61843
- "string",
61844
- "number",
61845
- "boolean"
61846
- ]
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."
61847
62519
  },
61848
62520
  {
61849
62521
  "items": {
61850
- "description": "A transform argument.",
61851
- "type": [
61852
- "string",
61853
- "number",
61854
- "boolean"
61855
- ]
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."
61856
62537
  },
61857
62538
  "maxItems": 3,
61858
62539
  "minItems": 1,
@@ -62023,6 +62704,13 @@
62023
62704
  "$ref": "#/definitions/ChannelValue",
62024
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"
62025
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
+ },
62026
62714
  "clip": {
62027
62715
  "anyOf": [
62028
62716
  {
@@ -63263,6 +63951,13 @@
63263
63951
  "$ref": "#/definitions/ChannelValue",
63264
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"
63265
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
+ },
63266
63961
  "clip": {
63267
63962
  "anyOf": [
63268
63963
  {
@@ -64503,6 +65198,13 @@
64503
65198
  "$ref": "#/definitions/ChannelValue",
64504
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"
64505
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
+ },
64506
65208
  "clip": {
64507
65209
  "anyOf": [
64508
65210
  {
@@ -65743,6 +66445,13 @@
65743
66445
  "$ref": "#/definitions/ChannelValue",
65744
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"
65745
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
+ },
65746
66455
  "clip": {
65747
66456
  "anyOf": [
65748
66457
  {
@@ -67079,21 +67788,39 @@
67079
67788
  "max": {
67080
67789
  "anyOf": [
67081
67790
  {
67082
- "description": "A transform argument.",
67083
- "type": [
67084
- "string",
67085
- "number",
67086
- "boolean"
67087
- ]
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."
67088
67806
  },
67089
67807
  {
67090
67808
  "items": {
67091
- "description": "A transform argument.",
67092
- "type": [
67093
- "string",
67094
- "number",
67095
- "boolean"
67096
- ]
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."
67097
67824
  },
67098
67825
  "maxItems": 1,
67099
67826
  "minItems": 1,
@@ -67175,21 +67902,39 @@
67175
67902
  "median": {
67176
67903
  "anyOf": [
67177
67904
  {
67178
- "description": "A transform argument.",
67179
- "type": [
67180
- "string",
67181
- "number",
67182
- "boolean"
67183
- ]
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."
67184
67920
  },
67185
67921
  {
67186
67922
  "items": {
67187
- "description": "A transform argument.",
67188
- "type": [
67189
- "string",
67190
- "number",
67191
- "boolean"
67192
- ]
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."
67193
67938
  },
67194
67939
  "maxItems": 1,
67195
67940
  "minItems": 1,
@@ -67353,21 +68098,39 @@
67353
68098
  "min": {
67354
68099
  "anyOf": [
67355
68100
  {
67356
- "description": "A transform argument.",
67357
- "type": [
67358
- "string",
67359
- "number",
67360
- "boolean"
67361
- ]
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."
67362
68116
  },
67363
68117
  {
67364
68118
  "items": {
67365
- "description": "A transform argument.",
67366
- "type": [
67367
- "string",
67368
- "number",
67369
- "boolean"
67370
- ]
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."
67371
68134
  },
67372
68135
  "maxItems": 1,
67373
68136
  "minItems": 1,
@@ -67449,21 +68212,39 @@
67449
68212
  "mode": {
67450
68213
  "anyOf": [
67451
68214
  {
67452
- "description": "A transform argument.",
67453
- "type": [
67454
- "string",
67455
- "number",
67456
- "boolean"
67457
- ]
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."
67458
68230
  },
67459
68231
  {
67460
68232
  "items": {
67461
- "description": "A transform argument.",
67462
- "type": [
67463
- "string",
67464
- "number",
67465
- "boolean"
67466
- ]
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."
67467
68248
  },
67468
68249
  "maxItems": 1,
67469
68250
  "minItems": 1,
@@ -67542,21 +68323,39 @@
67542
68323
  "ntile": {
67543
68324
  "anyOf": [
67544
68325
  {
67545
- "description": "A transform argument.",
67546
- "type": [
67547
- "string",
67548
- "number",
67549
- "boolean"
67550
- ]
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."
67551
68341
  },
67552
68342
  {
67553
68343
  "items": {
67554
- "description": "A transform argument.",
67555
- "type": [
67556
- "string",
67557
- "number",
67558
- "boolean"
67559
- ]
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."
67560
68359
  },
67561
68360
  "maxItems": 1,
67562
68361
  "minItems": 1,
@@ -67711,21 +68510,39 @@
67711
68510
  "nth_value": {
67712
68511
  "anyOf": [
67713
68512
  {
67714
- "description": "A transform argument.",
67715
- "type": [
67716
- "string",
67717
- "number",
67718
- "boolean"
67719
- ]
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."
67720
68528
  },
67721
68529
  {
67722
68530
  "items": {
67723
- "description": "A transform argument.",
67724
- "type": [
67725
- "string",
67726
- "number",
67727
- "boolean"
67728
- ]
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."
67729
68546
  },
67730
68547
  "maxItems": 2,
67731
68548
  "minItems": 1,
@@ -68173,6 +68990,20 @@
68173
68990
  ],
68174
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."
68175
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
+ },
68176
69007
  "aspectRatio": {
68177
69008
  "anyOf": [
68178
69009
  {
@@ -68224,6 +69055,28 @@
68224
69055
  ],
68225
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."
68226
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
+ },
68227
69080
  "colorBase": {
68228
69081
  "anyOf": [
68229
69082
  {
@@ -69267,20 +70120,6 @@
69267
70120
  ],
69268
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."
69269
70122
  },
69270
- "label": {
69271
- "anyOf": [
69272
- {
69273
- "type": "string"
69274
- },
69275
- {
69276
- "type": "null"
69277
- },
69278
- {
69279
- "$ref": "#/definitions/ParamRef"
69280
- }
69281
- ],
69282
- "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."
69283
- },
69284
70123
  "lengthBase": {
69285
70124
  "anyOf": [
69286
70125
  {
@@ -71052,6 +71891,20 @@
71052
71891
  ],
71053
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."
71054
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
+ },
71055
71908
  "aspectRatio": {
71056
71909
  "anyOf": [
71057
71910
  {
@@ -71103,6 +71956,28 @@
71103
71956
  ],
71104
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."
71105
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
+ },
71106
71981
  "colorBase": {
71107
71982
  "anyOf": [
71108
71983
  {
@@ -72146,20 +73021,6 @@
72146
73021
  ],
72147
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."
72148
73023
  },
72149
- "label": {
72150
- "anyOf": [
72151
- {
72152
- "type": "string"
72153
- },
72154
- {
72155
- "type": "null"
72156
- },
72157
- {
72158
- "$ref": "#/definitions/ParamRef"
72159
- }
72160
- ],
72161
- "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."
72162
- },
72163
73024
  "lengthBase": {
72164
73025
  "anyOf": [
72165
73026
  {
@@ -73910,8 +74771,15 @@
73910
74771
  "description": "A selection that filters the mark data."
73911
74772
  },
73912
74773
  "from": {
73913
- "description": "The name of the backing data table.",
73914
- "type": "string"
74774
+ "anyOf": [
74775
+ {
74776
+ "type": "string"
74777
+ },
74778
+ {
74779
+ "$ref": "#/definitions/ParamRef"
74780
+ }
74781
+ ],
74782
+ "description": "The name of the backing data table."
73915
74783
  },
73916
74784
  "optimize": {
73917
74785
  "description": "A flag (default `true`) to enable any mark-specific query optimizations. If `false`, optimizations are disabled to aid testing and debugging.",
@@ -73944,34 +74812,37 @@
73944
74812
  "$ref": "#/definitions/NearestY"
73945
74813
  },
73946
74814
  {
73947
- "$ref": "#/definitions/Toggle"
74815
+ "$ref": "#/definitions/Pan"
73948
74816
  },
73949
74817
  {
73950
- "$ref": "#/definitions/ToggleX"
74818
+ "$ref": "#/definitions/PanX"
73951
74819
  },
73952
74820
  {
73953
- "$ref": "#/definitions/ToggleY"
74821
+ "$ref": "#/definitions/PanY"
73954
74822
  },
73955
74823
  {
73956
- "$ref": "#/definitions/ToggleColor"
74824
+ "$ref": "#/definitions/PanZoom"
73957
74825
  },
73958
74826
  {
73959
- "$ref": "#/definitions/Pan"
74827
+ "$ref": "#/definitions/PanZoomX"
73960
74828
  },
73961
74829
  {
73962
- "$ref": "#/definitions/PanX"
74830
+ "$ref": "#/definitions/PanZoomY"
73963
74831
  },
73964
74832
  {
73965
- "$ref": "#/definitions/PanY"
74833
+ "$ref": "#/definitions/Region"
73966
74834
  },
73967
74835
  {
73968
- "$ref": "#/definitions/PanZoom"
74836
+ "$ref": "#/definitions/Toggle"
73969
74837
  },
73970
74838
  {
73971
- "$ref": "#/definitions/PanZoomX"
74839
+ "$ref": "#/definitions/ToggleX"
73972
74840
  },
73973
74841
  {
73974
- "$ref": "#/definitions/PanZoomY"
74842
+ "$ref": "#/definitions/ToggleY"
74843
+ },
74844
+ {
74845
+ "$ref": "#/definitions/ToggleColor"
73975
74846
  }
73976
74847
  ],
73977
74848
  "description": "A plot interactor entry."
@@ -74298,21 +75169,39 @@
74298
75169
  "product": {
74299
75170
  "anyOf": [
74300
75171
  {
74301
- "description": "A transform argument.",
74302
- "type": [
74303
- "string",
74304
- "number",
74305
- "boolean"
74306
- ]
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."
74307
75187
  },
74308
75188
  {
74309
75189
  "items": {
74310
- "description": "A transform argument.",
74311
- "type": [
74312
- "string",
74313
- "number",
74314
- "boolean"
74315
- ]
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."
74316
75205
  },
74317
75206
  "maxItems": 1,
74318
75207
  "minItems": 1,
@@ -74416,12 +75305,21 @@
74416
75305
  "quantile": {
74417
75306
  "description": "Compute the quantile value of the given column at the provided probability threshold. For example, 0.5 is the median.",
74418
75307
  "items": {
74419
- "description": "A transform argument.",
74420
- "type": [
74421
- "string",
74422
- "number",
74423
- "boolean"
74424
- ]
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."
74425
75323
  },
74426
75324
  "maxItems": 2,
74427
75325
  "minItems": 2,
@@ -74586,6 +75484,13 @@
74586
75484
  ],
74587
75485
  "description": "The kernel density bandwidth for smoothing, in pixels."
74588
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
+ },
74589
75494
  "clip": {
74590
75495
  "anyOf": [
74591
75496
  {
@@ -75792,6 +76697,13 @@
75792
76697
  ],
75793
76698
  "description": "The kernel density bandwidth for smoothing, in pixels."
75794
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
+ },
75795
76707
  "clip": {
75796
76708
  "anyOf": [
75797
76709
  {
@@ -77003,6 +77915,13 @@
77003
77915
  "$ref": "#/definitions/ChannelValue",
77004
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"
77005
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
+ },
77006
77925
  "clip": {
77007
77926
  "anyOf": [
77008
77927
  {
@@ -78271,6 +79190,13 @@
78271
79190
  "$ref": "#/definitions/ChannelValue",
78272
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"
78273
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
+ },
78274
79200
  "clip": {
78275
79201
  "anyOf": [
78276
79202
  {
@@ -79539,6 +80465,13 @@
79539
80465
  "$ref": "#/definitions/ChannelValue",
79540
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"
79541
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
+ },
79542
80475
  "clip": {
79543
80476
  "anyOf": [
79544
80477
  {
@@ -80958,6 +81891,42 @@
80958
81891
  ],
80959
81892
  "type": "string"
80960
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
+ },
80961
81930
  "RegressionY": {
80962
81931
  "additionalProperties": false,
80963
81932
  "description": "The regressionY mark.",
@@ -80988,6 +81957,13 @@
80988
81957
  "$ref": "#/definitions/ChannelValue",
80989
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"
80990
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
+ },
80991
81967
  "ci": {
80992
81968
  "anyOf": [
80993
81969
  {
@@ -82220,6 +83196,13 @@
82220
83196
  "$ref": "#/definitions/ChannelValue",
82221
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"
82222
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
+ },
82223
83206
  "clip": {
82224
83207
  "anyOf": [
82225
83208
  {
@@ -83481,6 +84464,13 @@
83481
84464
  "$ref": "#/definitions/ChannelValue",
83482
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"
83483
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
+ },
83484
84474
  "clip": {
83485
84475
  "anyOf": [
83486
84476
  {
@@ -85545,8 +86535,15 @@
85545
86535
  "description": "A selection to filter the database table indicated by the `from` property."
85546
86536
  },
85547
86537
  "from": {
85548
- "description": "The name of a database table to use as a data source for this widget.",
85549
- "type": "string"
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."
85550
86547
  },
85551
86548
  "height": {
85552
86549
  "description": "The height of the table widget, in pixels.",
@@ -85617,6 +86614,20 @@
85617
86614
  ],
85618
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."
85619
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
+ },
85620
86631
  "aspectRatio": {
85621
86632
  "anyOf": [
85622
86633
  {
@@ -85668,6 +86679,28 @@
85668
86679
  ],
85669
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."
85670
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
+ },
85671
86704
  "colorBase": {
85672
86705
  "anyOf": [
85673
86706
  {
@@ -86719,20 +87752,6 @@
86719
87752
  ],
86720
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."
86721
87754
  },
86722
- "label": {
86723
- "anyOf": [
86724
- {
86725
- "type": "string"
86726
- },
86727
- {
86728
- "type": "null"
86729
- },
86730
- {
86731
- "$ref": "#/definitions/ParamRef"
86732
- }
86733
- ],
86734
- "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."
86735
- },
86736
87755
  "lengthBase": {
86737
87756
  "anyOf": [
86738
87757
  {
@@ -88535,6 +89554,13 @@
88535
89554
  "$ref": "#/definitions/ChannelValue",
88536
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"
88537
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
+ },
88538
89564
  "clip": {
88539
89565
  "anyOf": [
88540
89566
  {
@@ -89743,6 +90769,13 @@
89743
90769
  "$ref": "#/definitions/ChannelValue",
89744
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"
89745
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
+ },
89746
90779
  "clip": {
89747
90780
  "anyOf": [
89748
90781
  {
@@ -90951,6 +91984,13 @@
90951
91984
  "$ref": "#/definitions/ChannelValue",
90952
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"
90953
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
+ },
90954
91994
  "clip": {
90955
91995
  "anyOf": [
90956
91996
  {
@@ -92173,6 +93213,13 @@
92173
93213
  ],
92174
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°."
92175
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
+ },
92176
93223
  "clip": {
92177
93224
  "anyOf": [
92178
93225
  {
@@ -93441,6 +94488,13 @@
93441
94488
  "$ref": "#/definitions/ChannelValue",
93442
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"
93443
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
+ },
93444
94498
  "clip": {
93445
94499
  "anyOf": [
93446
94500
  {
@@ -95140,6 +96194,13 @@
95140
96194
  "$ref": "#/definitions/ChannelValue",
95141
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"
95142
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
+ },
95143
96204
  "clip": {
95144
96205
  "anyOf": [
95145
96206
  {
@@ -96839,6 +97900,13 @@
96839
97900
  "$ref": "#/definitions/ChannelValue",
96840
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"
96841
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
+ },
96842
97910
  "clip": {
96843
97911
  "anyOf": [
96844
97912
  {
@@ -98538,6 +99606,13 @@
98538
99606
  "$ref": "#/definitions/ChannelValue",
98539
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"
98540
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
+ },
98541
99616
  "clip": {
98542
99617
  "anyOf": [
98543
99618
  {
@@ -100237,6 +101312,13 @@
100237
101312
  "$ref": "#/definitions/ChannelValue",
100238
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"
100239
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
+ },
100240
101322
  "clip": {
100241
101323
  "anyOf": [
100242
101324
  {
@@ -101582,6 +102664,13 @@
101582
102664
  "$ref": "#/definitions/ChannelValue",
101583
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"
101584
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
+ },
101585
102674
  "clip": {
101586
102675
  "anyOf": [
101587
102676
  {
@@ -102927,6 +104016,13 @@
102927
104016
  "$ref": "#/definitions/ChannelValue",
102928
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"
102929
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
+ },
102930
104026
  "clip": {
102931
104027
  "anyOf": [
102932
104028
  {
@@ -104272,6 +105368,13 @@
104272
105368
  "$ref": "#/definitions/ChannelValue",
104273
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"
104274
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
+ },
104275
105378
  "clip": {
104276
105379
  "anyOf": [
104277
105380
  {
@@ -105593,6 +106696,13 @@
105593
106696
  "$ref": "#/definitions/ChannelValue",
105594
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"
105595
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
+ },
105596
106706
  "clip": {
105597
106707
  "anyOf": [
105598
106708
  {
@@ -106873,6 +107983,13 @@
106873
107983
  "$ref": "#/definitions/ChannelValue",
106874
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"
106875
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
+ },
106876
107993
  "clip": {
106877
107994
  "anyOf": [
106878
107995
  {
@@ -108153,6 +109270,13 @@
108153
109270
  "$ref": "#/definitions/ChannelValue",
108154
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"
108155
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
+ },
108156
109280
  "clip": {
108157
109281
  "anyOf": [
108158
109282
  {
@@ -109382,6 +110506,13 @@
109382
110506
  "$ref": "#/definitions/ChannelValue",
109383
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"
109384
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
+ },
109385
110516
  "clip": {
109386
110517
  "anyOf": [
109387
110518
  {
@@ -110611,6 +111742,13 @@
110611
111742
  "$ref": "#/definitions/ChannelValue",
110612
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"
110613
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
+ },
110614
111752
  "clip": {
110615
111753
  "anyOf": [
110616
111754
  {
@@ -111851,6 +112989,13 @@
111851
112989
  ],
111852
112990
  "description": "The kernel density bandwidth for smoothing, in pixels."
111853
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
+ },
111854
112999
  "clip": {
111855
113000
  "anyOf": [
111856
113001
  {
@@ -113072,6 +114217,13 @@
113072
114217
  "$ref": "#/definitions/ChannelValue",
113073
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"
113074
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
+ },
113075
114227
  "clip": {
113076
114228
  "anyOf": [
113077
114229
  {
@@ -114328,6 +115480,13 @@
114328
115480
  "$ref": "#/definitions/ChannelValue",
114329
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"
114330
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
+ },
114331
115490
  "clip": {
114332
115491
  "anyOf": [
114333
115492
  {
@@ -115584,6 +116743,13 @@
115584
116743
  "$ref": "#/definitions/ChannelValue",
115585
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"
115586
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
+ },
115587
116753
  "clip": {
115588
116754
  "anyOf": [
115589
116755
  {
@@ -116840,6 +118006,13 @@
116840
118006
  "$ref": "#/definitions/ChannelValue",
116841
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"
116842
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
+ },
116843
118016
  "clip": {
116844
118017
  "anyOf": [
116845
118018
  {
@@ -118096,6 +119269,13 @@
118096
119269
  "$ref": "#/definitions/ChannelValue",
118097
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"
118098
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
+ },
118099
119279
  "clip": {
118100
119280
  "anyOf": [
118101
119281
  {
@@ -119363,6 +120543,13 @@
119363
120543
  ],
119364
120544
  "description": "The kernel density bandwidth for smoothing, in pixels."
119365
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
+ },
119366
120553
  "clip": {
119367
120554
  "anyOf": [
119368
120555
  {
@@ -120604,6 +121791,13 @@
120604
121791
  ],
120605
121792
  "description": "The kernel density bandwidth for smoothing, in pixels."
120606
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
+ },
120607
121801
  "clip": {
120608
121802
  "anyOf": [
120609
121803
  {
@@ -122065,6 +123259,13 @@
122065
123259
  ],
122066
123260
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
122067
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
+ },
122068
123269
  "clip": {
122069
123270
  "anyOf": [
122070
123271
  {
@@ -123289,6 +124490,13 @@
123289
124490
  ],
123290
124491
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
123291
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
+ },
123292
124500
  "clip": {
123293
124501
  "anyOf": [
123294
124502
  {
@@ -124573,6 +125781,13 @@
124573
125781
  ],
124574
125782
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
124575
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
+ },
124576
125791
  "clip": {
124577
125792
  "anyOf": [
124578
125793
  {
@@ -125800,6 +127015,13 @@
125800
127015
  ],
125801
127016
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
125802
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
+ },
125803
127025
  "clip": {
125804
127026
  "anyOf": [
125805
127027
  {
@@ -127170,6 +128392,13 @@
127170
128392
  ],
127171
128393
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
127172
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
+ },
127173
128402
  "clip": {
127174
128403
  "anyOf": [
127175
128404
  {
@@ -128393,6 +129622,13 @@
128393
129622
  ],
128394
129623
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
128395
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
+ },
128396
129632
  "clip": {
128397
129633
  "anyOf": [
128398
129634
  {
@@ -129677,6 +130913,13 @@
129677
130913
  ],
129678
130914
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
129679
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
+ },
129680
130923
  "clip": {
129681
130924
  "anyOf": [
129682
130925
  {
@@ -130909,6 +132152,13 @@
130909
132152
  ],
130910
132153
  "description": "The number of bins over which to discretize the data prior to smoothing. Defaults to 1024."
130911
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
+ },
130912
132162
  "clip": {
130913
132163
  "anyOf": [
130914
132164
  {
@@ -132260,6 +133510,13 @@
132260
133510
  "$ref": "#/definitions/ChannelValue",
132261
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"
132262
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
+ },
132263
133520
  "clip": {
132264
133521
  "anyOf": [
132265
133522
  {
@@ -133463,6 +134720,13 @@
133463
134720
  "$ref": "#/definitions/ChannelValue",
133464
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"
133465
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
+ },
133466
134730
  "clip": {
133467
134731
  "anyOf": [
133468
134732
  {
@@ -134677,6 +135941,13 @@
134677
135941
  "$ref": "#/definitions/ChannelValue",
134678
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"
134679
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
+ },
134680
135951
  "clip": {
134681
135952
  "anyOf": [
134682
135953
  {
@@ -135891,6 +137162,13 @@
135891
137162
  "$ref": "#/definitions/ChannelValue",
135892
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"
135893
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
+ },
135894
137172
  "clip": {
135895
137173
  "anyOf": [
135896
137174
  {
@@ -137094,6 +138372,13 @@
137094
138372
  "$ref": "#/definitions/ChannelValue",
137095
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"
137096
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
+ },
137097
138382
  "clip": {
137098
138383
  "anyOf": [
137099
138384
  {
@@ -138297,6 +139582,13 @@
138297
139582
  "$ref": "#/definitions/ChannelValue",
138298
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"
138299
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
+ },
138300
139592
  "ci": {
138301
139593
  "anyOf": [
138302
139594
  {
@@ -139543,6 +140835,13 @@
139543
140835
  "$ref": "#/definitions/ChannelValue",
139544
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"
139545
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
+ },
139546
140845
  "ci": {
139547
140846
  "anyOf": [
139548
140847
  {
@@ -140816,6 +142115,13 @@
140816
142115
  "$ref": "#/definitions/ChannelValue",
140817
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"
140818
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
+ },
140819
142125
  "clip": {
140820
142126
  "anyOf": [
140821
142127
  {
@@ -142036,6 +143342,13 @@
142036
143342
  "$ref": "#/definitions/ChannelValue",
142037
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"
142038
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
+ },
142039
143352
  "clip": {
142040
143353
  "anyOf": [
142041
143354
  {
@@ -143189,6 +144502,13 @@
143189
144502
  "$ref": "#/definitions/ChannelValue",
143190
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"
143191
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
+ },
143192
144512
  "clip": {
143193
144513
  "anyOf": [
143194
144514
  {
@@ -144326,6 +145646,13 @@
144326
145646
  "$ref": "#/definitions/ChannelValue",
144327
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"
144328
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
+ },
144329
145656
  "clip": {
144330
145657
  "anyOf": [
144331
145658
  {
@@ -145474,6 +146801,13 @@
145474
146801
  ],
145475
146802
  "description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. If also using a hexgrid mark, use matching **binWidth** values."
145476
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
+ },
145477
146811
  "clip": {
145478
146812
  "anyOf": [
145479
146813
  {
@@ -146862,6 +148196,13 @@
146862
148196
  ],
146863
148197
  "description": "The distance between centers of neighboring hexagons, in pixels; defaults to 20. Should match the **binWidth** of the hexbin mark."
146864
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
+ },
146865
148206
  "clip": {
146866
148207
  "anyOf": [
146867
148208
  {
@@ -147999,6 +149340,13 @@
147999
149340
  "$ref": "#/definitions/ChannelValue",
148000
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"
148001
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
+ },
148002
149350
  "clip": {
148003
149351
  "anyOf": [
148004
149352
  {
@@ -149244,6 +150592,13 @@
149244
150592
  "$ref": "#/definitions/ChannelValue",
149245
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"
149246
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
+ },
149247
150602
  "clip": {
149248
150603
  "anyOf": [
149249
150604
  {
@@ -150504,6 +151859,13 @@
150504
151859
  "$ref": "#/definitions/ChannelValue",
150505
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"
150506
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
+ },
150507
151869
  "clip": {
150508
151870
  "anyOf": [
150509
151871
  {
@@ -151764,6 +153126,13 @@
151764
153126
  "$ref": "#/definitions/ChannelValue",
151765
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"
151766
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
+ },
151767
153136
  "clip": {
151768
153137
  "anyOf": [
151769
153138
  {
@@ -153024,6 +154393,13 @@
153024
154393
  "$ref": "#/definitions/ChannelValue",
153025
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"
153026
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
+ },
153027
154403
  "clip": {
153028
154404
  "anyOf": [
153029
154405
  {
@@ -154315,6 +155691,13 @@
154315
155691
  ],
154316
155692
  "description": "The kernel density bandwidth for smoothing, in pixels."
154317
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
+ },
154318
155701
  "clip": {
154319
155702
  "anyOf": [
154320
155703
  {
@@ -155541,6 +156924,13 @@
155541
156924
  ],
155542
156925
  "description": "The kernel density bandwidth for smoothing, in pixels."
155543
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
+ },
155544
156934
  "clip": {
155545
156935
  "anyOf": [
155546
156936
  {
@@ -156767,6 +158157,13 @@
156767
158157
  ],
156768
158158
  "description": "The kernel density bandwidth for smoothing, in pixels."
156769
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
+ },
156770
158167
  "clip": {
156771
158168
  "anyOf": [
156772
158169
  {
@@ -157998,6 +159395,13 @@
157998
159395
  "$ref": "#/definitions/ChannelValue",
157999
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"
158000
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
+ },
158001
159405
  "clip": {
158002
159406
  "anyOf": [
158003
159407
  {
@@ -159286,6 +160690,13 @@
159286
160690
  "$ref": "#/definitions/ChannelValue",
159287
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"
159288
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
+ },
159289
160700
  "clip": {
159290
160701
  "anyOf": [
159291
160702
  {
@@ -160574,6 +161985,13 @@
160574
161985
  "$ref": "#/definitions/ChannelValue",
160575
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"
160576
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
+ },
160577
161995
  "clip": {
160578
161996
  "anyOf": [
160579
161997
  {
@@ -161862,6 +163280,13 @@
161862
163280
  "$ref": "#/definitions/ChannelValue",
161863
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"
161864
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
+ },
161865
163290
  "ci": {
161866
163291
  "anyOf": [
161867
163292
  {
@@ -163034,6 +164459,13 @@
163034
164459
  "$ref": "#/definitions/ChannelValue",
163035
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"
163036
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
+ },
163037
164469
  "clip": {
163038
164470
  "anyOf": [
163039
164471
  {
@@ -164315,6 +165747,13 @@
164315
165747
  "$ref": "#/definitions/ChannelValue",
164316
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"
164317
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
+ },
164318
165757
  "clip": {
164319
165758
  "anyOf": [
164320
165759
  {
@@ -165596,6 +167035,13 @@
165596
167035
  "$ref": "#/definitions/ChannelValue",
165597
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"
165598
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
+ },
165599
167045
  "clip": {
165600
167046
  "anyOf": [
165601
167047
  {
@@ -166941,6 +168387,13 @@
166941
168387
  "$ref": "#/definitions/ChannelValue",
166942
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"
166943
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
+ },
166944
168397
  "clip": {
166945
168398
  "anyOf": [
166946
168399
  {
@@ -168297,6 +169750,13 @@
168297
169750
  "$ref": "#/definitions/ChannelValue",
168298
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"
168299
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
+ },
168300
169760
  "clip": {
168301
169761
  "anyOf": [
168302
169762
  {
@@ -169646,6 +171106,13 @@
169646
171106
  "$ref": "#/definitions/ChannelValue",
169647
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"
169648
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
+ },
169649
171116
  "clip": {
169650
171117
  "anyOf": [
169651
171118
  {
@@ -170909,6 +172376,13 @@
170909
172376
  "$ref": "#/definitions/ChannelValue",
170910
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"
170911
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
+ },
170912
172386
  "clip": {
170913
172387
  "anyOf": [
170914
172388
  {
@@ -172192,6 +173666,13 @@
172192
173666
  "$ref": "#/definitions/ChannelValue",
172193
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"
172194
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
+ },
172195
173676
  "clip": {
172196
173677
  "anyOf": [
172197
173678
  {
@@ -173399,6 +174880,13 @@
173399
174880
  "$ref": "#/definitions/ChannelValue",
173400
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"
173401
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
+ },
173402
174890
  "clip": {
173403
174891
  "anyOf": [
173404
174892
  {
@@ -174606,6 +176094,13 @@
174606
176094
  "$ref": "#/definitions/ChannelValue",
174607
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"
174608
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
+ },
174609
176104
  "clip": {
174610
176105
  "anyOf": [
174611
176106
  {
@@ -175813,6 +177308,13 @@
175813
177308
  "$ref": "#/definitions/ChannelValue",
175814
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"
175815
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
+ },
175816
177318
  "clip": {
175817
177319
  "anyOf": [
175818
177320
  {
@@ -177091,6 +178593,13 @@
177091
178593
  "$ref": "#/definitions/ChannelValue",
177092
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"
177093
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
+ },
177094
178603
  "clip": {
177095
178604
  "anyOf": [
177096
178605
  {
@@ -178224,6 +179733,13 @@
178224
179733
  "$ref": "#/definitions/ChannelValue",
178225
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"
178226
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
+ },
178227
179743
  "clip": {
178228
179744
  "anyOf": [
178229
179745
  {
@@ -179497,21 +181013,39 @@
179497
181013
  "stddev": {
179498
181014
  "anyOf": [
179499
181015
  {
179500
- "description": "A transform argument.",
179501
- "type": [
179502
- "string",
179503
- "number",
179504
- "boolean"
179505
- ]
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."
179506
181031
  },
179507
181032
  {
179508
181033
  "items": {
179509
- "description": "A transform argument.",
179510
- "type": [
179511
- "string",
179512
- "number",
179513
- "boolean"
179514
- ]
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."
179515
181049
  },
179516
181050
  "maxItems": 1,
179517
181051
  "minItems": 1,
@@ -179593,21 +181127,39 @@
179593
181127
  "stddevPop": {
179594
181128
  "anyOf": [
179595
181129
  {
179596
- "description": "A transform argument.",
179597
- "type": [
179598
- "string",
179599
- "number",
179600
- "boolean"
179601
- ]
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."
179602
181145
  },
179603
181146
  {
179604
181147
  "items": {
179605
- "description": "A transform argument.",
179606
- "type": [
179607
- "string",
179608
- "number",
179609
- "boolean"
179610
- ]
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."
179611
181163
  },
179612
181164
  "maxItems": 1,
179613
181165
  "minItems": 1,
@@ -179689,21 +181241,39 @@
179689
181241
  "sum": {
179690
181242
  "anyOf": [
179691
181243
  {
179692
- "description": "A transform argument.",
179693
- "type": [
179694
- "string",
179695
- "number",
179696
- "boolean"
179697
- ]
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."
179698
181259
  },
179699
181260
  {
179700
181261
  "items": {
179701
- "description": "A transform argument.",
179702
- "type": [
179703
- "string",
179704
- "number",
179705
- "boolean"
179706
- ]
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."
179707
181277
  },
179708
181278
  "maxItems": 1,
179709
181279
  "minItems": 1,
@@ -179771,8 +181341,15 @@
179771
181341
  "description": "A selection to filter the database table indicated by the `from` property."
179772
181342
  },
179773
181343
  "from": {
179774
- "description": "The name of a database table to use as a data source for this widget.",
179775
- "type": "string"
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."
179776
181353
  },
179777
181354
  "height": {
179778
181355
  "description": "The height of the table widget, in pixels.",
@@ -179842,6 +181419,13 @@
179842
181419
  "$ref": "#/definitions/ChannelValue",
179843
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"
179844
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
+ },
179845
181429
  "clip": {
179846
181430
  "anyOf": [
179847
181431
  {
@@ -181167,6 +182751,13 @@
181167
182751
  "$ref": "#/definitions/ChannelValue",
181168
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"
181169
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
+ },
181170
182761
  "clip": {
181171
182762
  "anyOf": [
181172
182763
  {
@@ -182503,6 +184094,13 @@
182503
184094
  "$ref": "#/definitions/ChannelValue",
182504
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"
182505
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
+ },
182506
184104
  "clip": {
182507
184105
  "anyOf": [
182508
184106
  {
@@ -183832,6 +185430,13 @@
183832
185430
  "$ref": "#/definitions/ChannelValue",
183833
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"
183834
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
+ },
183835
185440
  "clip": {
183836
185441
  "anyOf": [
183837
185442
  {
@@ -185075,6 +186680,13 @@
185075
186680
  "$ref": "#/definitions/ChannelValue",
185076
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"
185077
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
+ },
185078
186690
  "clip": {
185079
186691
  "anyOf": [
185080
186692
  {
@@ -186335,7 +187947,7 @@
186335
187947
  "type": "array"
186336
187948
  },
186337
187949
  "peers": {
186338
- "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.",
186339
187951
  "type": "boolean"
186340
187952
  },
186341
187953
  "select": {
@@ -186360,7 +187972,7 @@
186360
187972
  "description": "The output selection. A clause of the form `(field = value1) OR (field = value2) ...` is added for the currently selected values."
186361
187973
  },
186362
187974
  "peers": {
186363
- "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.",
186364
187976
  "type": "boolean"
186365
187977
  },
186366
187978
  "select": {
@@ -186384,7 +187996,7 @@
186384
187996
  "description": "The output selection. A clause of the form `(field = value1) OR (field = value2) ...` is added for the currently selected values."
186385
187997
  },
186386
187998
  "peers": {
186387
- "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.",
186388
188000
  "type": "boolean"
186389
188001
  },
186390
188002
  "select": {
@@ -186408,7 +188020,7 @@
186408
188020
  "description": "The output selection. A clause of the form `(field = value1) OR (field = value2) ...` is added for the currently selected values."
186409
188021
  },
186410
188022
  "peers": {
186411
- "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.",
186412
188024
  "type": "boolean"
186413
188025
  },
186414
188026
  "select": {
@@ -186549,21 +188161,39 @@
186549
188161
  "varPop": {
186550
188162
  "anyOf": [
186551
188163
  {
186552
- "description": "A transform argument.",
186553
- "type": [
186554
- "string",
186555
- "number",
186556
- "boolean"
186557
- ]
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."
186558
188179
  },
186559
188180
  {
186560
188181
  "items": {
186561
- "description": "A transform argument.",
186562
- "type": [
186563
- "string",
186564
- "number",
186565
- "boolean"
186566
- ]
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."
186567
188197
  },
186568
188198
  "maxItems": 1,
186569
188199
  "minItems": 1,
@@ -186645,21 +188275,39 @@
186645
188275
  "variance": {
186646
188276
  "anyOf": [
186647
188277
  {
186648
- "description": "A transform argument.",
186649
- "type": [
186650
- "string",
186651
- "number",
186652
- "boolean"
186653
- ]
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."
186654
188293
  },
186655
188294
  {
186656
188295
  "items": {
186657
- "description": "A transform argument.",
186658
- "type": [
186659
- "string",
186660
- "number",
186661
- "boolean"
186662
- ]
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."
186663
188311
  },
186664
188312
  "maxItems": 1,
186665
188313
  "minItems": 1,
@@ -186724,6 +188372,13 @@
186724
188372
  "$ref": "#/definitions/ChannelValue",
186725
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"
186726
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
+ },
186727
188382
  "clip": {
186728
188383
  "anyOf": [
186729
188384
  {
@@ -187923,6 +189578,13 @@
187923
189578
  "$ref": "#/definitions/ChannelValue",
187924
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"
187925
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
+ },
187926
189588
  "clip": {
187927
189589
  "anyOf": [
187928
189590
  {
@@ -189110,6 +190772,13 @@
189110
190772
  "$ref": "#/definitions/ChannelValue",
189111
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"
189112
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
+ },
189113
190782
  "clip": {
189114
190783
  "anyOf": [
189115
190784
  {
@@ -190277,6 +191946,13 @@
190277
191946
  "$ref": "#/definitions/ChannelValue",
190278
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"
190279
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
+ },
190280
191956
  "clip": {
190281
191957
  "anyOf": [
190282
191958
  {
@@ -191513,6 +193189,13 @@
191513
193189
  "$ref": "#/definitions/ChannelValue",
191514
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"
191515
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
+ },
191516
193199
  "clip": {
191517
193200
  "anyOf": [
191518
193201
  {