-
Notifications
You must be signed in to change notification settings - Fork 40
/
semantics.json
85 lines (85 loc) · 1.81 KB
/
semantics.json
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
[
{
"name": "graphMode",
"type": "select",
"label": "Type of chart",
"importance": "high",
"options": [
{
"value": "pieChart",
"label": "Pie Chart"
},
{
"value": "barChart",
"label": "Bar Chart"
}
],
"default": "pieChart"
},
{
"name": "listOfTypes",
"type": "list",
"label": "Data elements",
"importance": "high",
"entity": "option",
"min": 1,
"defaultNum": 2,
"field": {
"name": "type",
"type": "group",
"label": "Data element",
"importance": "high",
"fields": [
{
"name": "text",
"type": "text",
"label": "Name",
"importance": "medium"
},
{
"name": "value",
"type": "number",
"label": "Value",
"importance": "low",
"default": 1,
"min": 0.0001,
"decimals": 4
},
{
"name": "color",
"type": "text",
"widget": "colorSelector",
"label": "Color",
"importance": "low",
"default": "#000",
"optional": true,
"spectrum": {
"showInput": true,
"preferredFormat": "hex"
}
},
{
"name": "fontColor",
"type": "text",
"widget": "colorSelector",
"label": "Font Color",
"importance": "low",
"default": "#fff",
"optional": true,
"spectrum": {
"showInput": true,
"preferredFormat": "hex"
}
}
]
}
},
{
"name": "figureDefinition",
"type": "text",
"label": "Text read by readspeakers defining the figure as a chart.",
"importance": "low",
"default": "Chart",
"common": true
}
]