-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcapabilities.json
More file actions
404 lines (404 loc) · 18.3 KB
/
capabilities.json
File metadata and controls
404 lines (404 loc) · 18.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
{
"dataRoles": [
{
"name": "Y",
"kind": "Measure",
"displayName": "Value",
"description": "Data field that define the value you want to plot"
}, {
"name": "StartValue",
"kind": "Measure",
"displayName": "Start Value",
"description": "Data field that define start value"
}, {
"name": "EndValue",
"kind": "Measure",
"displayName": "End Value",
"description": "Data field that define end value"
}, {
"name": "TargetValue",
"kind": "Measure",
"displayName": "Target Value",
"description": "Data field that define target value"
}, {
"name": "Range2StartValue",
"kind": "Measure",
"displayName": "Range2 Start Value",
"description": "Start value of Range2"
}, {
"name": "Range3StartValue",
"kind": "Measure",
"displayName": "Range3 Start Value",
"description": "Start value of Range3"
}, {
"name": "DisplayFilter",
"kind": "Measure",
"displayName": "Display Filter",
"description": "Hide gauge if value evaluates to zero or blank"
}
],
"objects": {
"axis": {
"displayName": "Gauge Axis",
"properties": {
"startAngle": {
"displayName": "Start Angle",
"description": "Angle in Degrees from verticle to startValue",
"placeHolderText": "-120",
"type": { "numeric": true }
},
"endAngle": {
"displayName": "End Angle",
"description": "Angle in Degrees from verticle to endValue",
"placeHolderText": "120",
"type": { "numeric": true }
},
"startValue": {
"displayName": "Start Value",
"description": "Fixed start value",
"type": { "numeric": true }
},
"endValue": {
"displayName": "End Value",
"description": "Fixed end value",
"type": { "numeric": true }
},
"axisScaleType": {
"displayName": "Scale",
"description": "Scale to measure data in the gauge",
"placeHolderText": "Linear",
"type": {
"enumeration": [
{
"value": "Linear",
"displayName": "Linear"
},
{
"value": "Log",
"displayName": "Log"
}
]
}
}
}
},
"range1": {
"displayName": "Range 1",
"properties": {
"rangeColor": {
"displayName": "Color",
"description": "Range1 arc color",
"type": { "fill": { "solid": { "color": true } } }
},
"thickness": {
"displayName": "Thickness",
"description": "Range1 thickness as a fraction of gauge radius",
"placeHolderText": "50%",
"type": { "numeric": true }
},
"startValue": {
"displayName": "Start Value",
"description": "Range1 start value",
"type": { "numeric": true }
}
}
},
"range2": {
"displayName": "Range 2",
"properties": {
"rangeColor": {
"displayName": "Color",
"description": "Range2 arc color",
"type": { "fill": { "solid": { "color": true } } }
},
"thickness": {
"displayName": "Thickness",
"description": "Range2 thickness as percentage of gauge radius",
"placeHolderText": "50%",
"type": { "numeric": true }
},
"startValue": {
"displayName": "Start Value",
"description": "Range2 start value",
"type": { "numeric": true }
}
}
},
"range3": {
"displayName": "Range 3",
"properties": {
"rangeColor": {
"displayName": "Color",
"description": "Range3 color",
"type": { "fill": { "solid": { "color": true } } }
},
"thickness": {
"displayName": "Thickness",
"description": "Range3 thickness as percentage of gauge radius",
"placeHolderText": "50%",
"type": { "numeric": true }
},
"startValue": {
"displayName": "Start Value",
"description": "Range3 start value",
"type": { "numeric": true }
}
}
},
"target": {
"displayName": "Target",
"properties": {
"show": {
"type": { "bool": true }
},
"value": {
"displayName": "Value",
"description": "Constant value as target",
"type": { "numeric": true }
},
"lineColor": {
"displayName": "Line Color",
"description": "Target line color",
"type": { "fill": { "solid": { "color": true } } }
},
"innerRadiusRatio": {
"displayName": "Length",
"description": "Length of target line as percentage of gauge radius",
"placeHolderText": "50%",
"type": { "numeric": true }
},
"textColor": {
"displayName": "Text Color",
"type": { "fill": { "solid": { "color": true } } }
},
"fontSize": {
"displayName": "TextSize",
"type": { "formatting": { "fontSize": true } }
}
}
},
"indicator": {
"displayName": "Indicator",
"properties": {
"pointerColor": {
"displayName": "Needle Color",
"description": "Color of the needle",
"type": { "fill": { "solid": { "color": true } } }
},
"pointerSizeFactor": {
"displayName": "Needle Size",
"description": "Distance to needle tip as percentage of gauge radius",
"placeHolderText": "70%",
"type": { "numeric": true }
},
"baseColor": {
"displayName": "Base Color",
"description": "Color of indicator base arc",
"type": { "fill": { "solid": { "color": true } } }
},
"baseThicknessFactor": {
"displayName": "Base Thickness",
"description": "Thickness of indicator base as percentage of its radius",
"placeHolderText": "30%",
"type": { "numeric": true }
}
}
},
"labels": {
"displayName": "Axis Labels",
"properties": {
"show": {
"type": { "bool": true }
},
"color": {
"displayName": "Color",
"type": { "fill": { "solid": { "color": true } } }
},
"fontSize": {
"displayName": "Text Size",
"type": { "formatting": { "fontSize": true } }
},
"labelDisplayUnits": {
"displayName": "Display Units",
"type": { "formatting": { "labelDisplayUnits": true } }
},
"labelPrecision": {
"displayName": "Precision",
"placeHolderText": "Auto",
"type": { "numeric": true }
},
"round": {
"displayName": "Round",
"description": "Round label values for better visualization",
"type": { "bool": true }
},
"count": {
"displayName": "Count",
"description": "Approximate count of labels to display",
"placeHolderText": "4 Approximately",
"type": { "numeric": true }
},
"reduce": {
"displayName": "Reduce",
"description": "Reduce the number of labels",
"type": { "bool": true }
}
}
},
"calloutValue": {
"displayName": "Callout Value",
"properties": {
"show": {
"type": { "bool": true }
},
"color": {
"displayName": "Color",
"type": { "fill": { "solid": { "color": true } } }
},
"fontSize": {
"displayName": "Text Size",
"type": { "formatting": { "fontSize": true } }
},
"labelDisplayUnits": {
"displayName": "Display Units",
"type": { "formatting": { "labelDisplayUnits": true } }
},
"labelPrecision": {
"displayName": "Precision",
"placeHolderText": "Auto",
"type": { "numeric": true }
},
"xOffset": {
"displayName": "X Offset",
"description": "Horizontal percent displacement of Callout Value from default position",
"placeHolderText": "0%",
"type": { "numeric": true }
},
"yOffset": {
"displayName": "Y Offset",
"description": "Vertical percent displacement of Callout Value from default position",
"placeHolderText": "0%",
"type": { "numeric": true }
}
}
},
"calloutPercent": {
"displayName": "Callout Percent",
"properties": {
"show": {
"type": { "bool": true }
},
"color": {
"displayName": "Color",
"type": { "fill": { "solid": { "color": true } } }
},
"fontSize": {
"displayName": "TextSize",
"type": { "formatting": { "fontSize": true } }
},
"labelPrecision": {
"displayName": "Precision",
"placeHolderText": "Auto",
"type": { "numeric": true }
},
"xOffset": {
"displayName": "X Offset",
"description": "Horizontal percent displacement of Callout Percent from default position",
"placeHolderText": "0%",
"type": { "numeric": true }
},
"yOffset": {
"displayName": "Y Offset",
"description": "Vertical percent displacement of Callout Percent from default position",
"placeHolderText": "0%",
"type": { "numeric": true }
},
"percentType": {
"displayName": "100% ",
"description": "The base of 100%",
"placeHolderText": "EndValue",
"type": {
"enumeration": [
{
"value": "EndValue",
"displayName": "End Value"
},
{
"value": "Target",
"displayName": "Target"
},
{
"value": "Range2Start",
"displayName": "Range 2 Start"
},
{
"value": "Range3Start",
"displayName": "Range 3 Start"
}
]
}
},
"invert": {
"displayName": "Invert",
"description": "Invert the percentage value",
"type": { "bool": true }
}
}
},
"margins": {
"displayName": "Margins",
"properties": {
"top": {
"displayName": "Top",
"description": "Top Margin",
"placeHolderText": "0",
"type": { "numeric": true }
},
"bottom": {
"displayName": "Bottom",
"description": "Bottom Margin",
"placeHolderText": "0",
"type": { "numeric": true }
},
"left": {
"displayName": "Left",
"description": "Left Margin",
"placeHolderText": "0",
"type": { "numeric": true }
},
"right": {
"displayName": "Right",
"description": "Right Margin",
"placeHolderText": "0",
"type": { "numeric": true }
}
}
}
},
"dataViewMappings": [{
"conditions": [
{
"Y": { "min": 0, "max": 1 },
"StartValue": { "min": 0, "max": 1 },
"EndValue": { "min": 0, "max": 1 },
"TargetValue": { "min": 0, "max": 1 },
"Range2StartValue": { "min": 0, "max": 1 },
"Range3StartValue": { "min": 0, "max": 1 },
"DisplayFilter": { "min": 0, "max": 1 }
}
],
"categorical": {
"values": {
"select": [
{ "bind": { "to": "Y" } },
{ "bind": { "to": "StartValue" } },
{ "bind": { "to": "EndValue" } },
{ "bind": { "to": "TargetValue" } },
{ "bind": { "to": "Range2StartValue" } },
{ "bind": { "to": "Range3StartValue" } },
{ "bind": { "to": "DisplayFilter" } }
]
}
}
}]
}