forked from liprec/powerbi-d3jsvisual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capabilities.json
111 lines (111 loc) · 3.28 KB
/
capabilities.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
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
{
"dataRoles": [
{
"displayName": "Dataset",
"name": "dataset",
"kind": "GroupingOrMeasure"
}
],
"dataViewMappings": [
{
"table": {
"rows": {
"for": {
"in": "dataset"
},
"dataReductionAlgorithm": {
"top": { "count": 30000 }
}
}
}
}
],
"objects": {
"general": {
"displayName": "General",
"properties": {
"formatString": {
"type": { "formatting": { "labelDisplayUnits": false } }
},
"js": {
"type": {
"text": true
}
},
"css": {
"type" : {
"text": true
}
}
}
},
"margin" : {
"displayName": "Margin",
"properties": {
"top": {
"displayName": "Top",
"type": {
"numeric": true
}
},
"bottom": {
"displayName": "Bottom",
"type": {
"numeric": true
}
},
"left": {
"displayName": "Left",
"type": {
"numeric": true
}
},
"right": {
"displayName": "Right",
"type": {
"numeric": true
}
}
}
},
"colors" : {
"displayName": "Colors",
"properties": {
"color1": {
"displayName": "Color 1",
"type": { "fill": { "solid": { "color": true } } }
},
"color2": {
"displayName": "Color 2",
"type": { "fill": { "solid": { "color": true } } }
},
"color3": {
"displayName": "Color 3",
"type": { "fill": { "solid": { "color": true } } }
},
"color4": {
"displayName": "Color 4",
"type": { "fill": { "solid": { "color": true } } }
},
"color5": {
"displayName": "Color 5",
"type": { "fill": { "solid": { "color": true } } }
},
"color6": {
"displayName": "Color 6",
"type": { "fill": { "solid": { "color": true } } }
},
"color7": {
"displayName": "Color 7",
"type": { "fill": { "solid": { "color": true } } }
},
"color8": {
"displayName": "Color 8",
"type": { "fill": { "solid": { "color": true } } }
}
}
}
},
"advancedEditModeSupport": 2,
"suppressDefaultTitle": true
}