@luquimbo/bi-superpowers 3.1.1 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +5 -3
- package/.claude-plugin/plugin.json +28 -2
- package/.claude-plugin/skill-manifest.json +22 -6
- package/.plugin/plugin.json +1 -1
- package/AGENTS.md +52 -36
- package/CHANGELOG.md +295 -0
- package/README.md +75 -26
- package/bin/build-plugin.js +17 -10
- package/bin/cli.js +278 -322
- package/bin/commands/build-desktop.js +35 -16
- package/bin/commands/diff.js +31 -13
- package/bin/commands/install.js +93 -72
- package/bin/commands/lint.js +40 -26
- package/bin/commands/mcp-setup.js +3 -10
- package/bin/commands/update-check.js +389 -0
- package/bin/lib/agents.js +19 -0
- package/bin/lib/generators/claude-plugin.js +144 -6
- package/bin/lib/generators/shared.js +29 -33
- package/bin/lib/mcp-config.js +191 -16
- package/bin/lib/skills.js +115 -27
- package/bin/postinstall.js +4 -2
- package/bin/utils/mcp-detect.js +2 -2
- package/commands/bi-start.md +218 -0
- package/commands/pbi-connect.md +43 -65
- package/commands/project-kickoff.md +393 -673
- package/commands/report-design.md +403 -0
- package/desktop-extension/manifest.json +5 -12
- package/desktop-extension/server.js +34 -25
- package/package.json +6 -10
- package/skills/bi-start/SKILL.md +220 -0
- package/skills/bi-start/scripts/update-check.js +389 -0
- package/skills/pbi-connect/SKILL.md +45 -67
- package/skills/pbi-connect/scripts/update-check.js +389 -0
- package/skills/project-kickoff/SKILL.md +395 -675
- package/skills/project-kickoff/scripts/update-check.js +389 -0
- package/skills/report-design/SKILL.md +405 -0
- package/skills/report-design/references/cli-commands.md +184 -0
- package/skills/report-design/references/cli-setup.md +101 -0
- package/skills/report-design/references/close-write-open-pattern.md +80 -0
- package/skills/report-design/references/layouts/finance.md +65 -0
- package/skills/report-design/references/layouts/generic.md +46 -0
- package/skills/report-design/references/layouts/hr.md +48 -0
- package/skills/report-design/references/layouts/marketing.md +45 -0
- package/skills/report-design/references/layouts/operations.md +44 -0
- package/skills/report-design/references/layouts/sales.md +50 -0
- package/skills/report-design/references/native-visuals.md +341 -0
- package/skills/report-design/references/pbi-desktop-installation.md +87 -0
- package/skills/report-design/references/pbir-preview-activation.md +40 -0
- package/skills/report-design/references/slicer.md +89 -0
- package/skills/report-design/references/textbox.md +101 -0
- package/skills/report-design/references/themes/BISuperpowers.json +915 -0
- package/skills/report-design/references/troubleshooting.md +135 -0
- package/skills/report-design/references/visual-types.md +78 -0
- package/skills/report-design/scripts/apply-theme.js +243 -0
- package/skills/report-design/scripts/create-visual.js +878 -0
- package/skills/report-design/scripts/ensure-pbi-cli.sh +41 -0
- package/skills/report-design/scripts/update-check.js +389 -0
- package/skills/report-design/scripts/validate-pbir.js +322 -0
- package/src/content/base.md +12 -68
- package/src/content/mcp-requirements.json +0 -25
- package/src/content/routing.md +19 -74
- package/src/content/skills/bi-start.md +191 -0
- package/src/content/skills/pbi-connect.md +22 -65
- package/src/content/skills/project-kickoff.md +372 -673
- package/src/content/skills/report-design/SKILL.md +376 -0
- package/src/content/skills/report-design/references/cli-commands.md +184 -0
- package/src/content/skills/report-design/references/cli-setup.md +101 -0
- package/src/content/skills/report-design/references/close-write-open-pattern.md +80 -0
- package/src/content/skills/report-design/references/layouts/finance.md +65 -0
- package/src/content/skills/report-design/references/layouts/generic.md +46 -0
- package/src/content/skills/report-design/references/layouts/hr.md +48 -0
- package/src/content/skills/report-design/references/layouts/marketing.md +45 -0
- package/src/content/skills/report-design/references/layouts/operations.md +44 -0
- package/src/content/skills/report-design/references/layouts/sales.md +50 -0
- package/src/content/skills/report-design/references/native-visuals.md +341 -0
- package/src/content/skills/report-design/references/pbi-desktop-installation.md +87 -0
- package/src/content/skills/report-design/references/pbir-preview-activation.md +40 -0
- package/src/content/skills/report-design/references/slicer.md +89 -0
- package/src/content/skills/report-design/references/textbox.md +101 -0
- package/src/content/skills/report-design/references/themes/BISuperpowers.json +915 -0
- package/src/content/skills/report-design/references/troubleshooting.md +135 -0
- package/src/content/skills/report-design/references/visual-types.md +78 -0
- package/src/content/skills/report-design/scripts/apply-theme.js +243 -0
- package/src/content/skills/report-design/scripts/create-visual.js +878 -0
- package/src/content/skills/report-design/scripts/ensure-pbi-cli.sh +41 -0
- package/src/content/skills/report-design/scripts/validate-pbir.js +322 -0
- package/bin/commands/add.js +0 -533
- package/bin/commands/add.test.js +0 -77
- package/bin/commands/changelog.js +0 -443
- package/bin/commands/install.test.js +0 -289
- package/bin/commands/lint.test.js +0 -103
- package/bin/commands/pull.js +0 -287
- package/bin/commands/pull.test.js +0 -36
- package/bin/commands/push.js +0 -231
- package/bin/commands/push.test.js +0 -14
- package/bin/commands/search.js +0 -344
- package/bin/commands/search.test.js +0 -115
- package/bin/commands/setup.js +0 -545
- package/bin/commands/setup.test.js +0 -46
- package/bin/commands/sync-profile.js +0 -405
- package/bin/commands/sync-profile.test.js +0 -14
- package/bin/commands/sync-source.js +0 -418
- package/bin/commands/sync-source.test.js +0 -14
- package/bin/lib/generators/claude-plugin.test.js +0 -111
- package/bin/lib/mcp-config.test.js +0 -310
- package/bin/lib/microsoft-mcp.test.js +0 -115
- package/bin/utils/errors.js +0 -159
- package/bin/utils/git.js +0 -298
- package/bin/utils/logger.js +0 -142
- package/bin/utils/mcp-detect.test.js +0 -81
- package/bin/utils/pbix.js +0 -305
- package/bin/utils/pbix.test.js +0 -37
- package/bin/utils/profiles.js +0 -312
- package/bin/utils/projects.js +0 -169
- package/bin/utils/readline.js +0 -206
- package/bin/utils/readline.test.js +0 -47
- package/bin/utils/tui.test.js +0 -127
- package/docs/openrouter-free-models.md +0 -92
- package/library/examples/README.md +0 -151
- package/library/examples/finance-reporting/README.md +0 -351
- package/library/examples/finance-reporting/data-model.md +0 -267
- package/library/examples/finance-reporting/measures.dax +0 -557
- package/library/examples/hr-analytics/README.md +0 -371
- package/library/examples/hr-analytics/data-model.md +0 -315
- package/library/examples/hr-analytics/measures.dax +0 -460
- package/library/examples/marketing-analytics/README.md +0 -37
- package/library/examples/marketing-analytics/data-model.md +0 -62
- package/library/examples/marketing-analytics/measures.dax +0 -110
- package/library/examples/retail-analytics/README.md +0 -439
- package/library/examples/retail-analytics/data-model.md +0 -288
- package/library/examples/retail-analytics/measures.dax +0 -481
- package/library/examples/supply-chain/README.md +0 -37
- package/library/examples/supply-chain/data-model.md +0 -69
- package/library/examples/supply-chain/measures.dax +0 -77
- package/library/examples/udf-library/README.md +0 -228
- package/library/examples/udf-library/functions.dax +0 -571
- package/library/snippets/dax/README.md +0 -292
- package/library/snippets/dax/business-domains.md +0 -576
- package/library/snippets/dax/calculate-patterns.md +0 -276
- package/library/snippets/dax/calculation-groups.md +0 -489
- package/library/snippets/dax/error-handling.md +0 -495
- package/library/snippets/dax/iterators-and-aggregations.md +0 -474
- package/library/snippets/dax/kpis-and-metrics.md +0 -293
- package/library/snippets/dax/rankings-and-topn.md +0 -235
- package/library/snippets/dax/security-patterns.md +0 -413
- package/library/snippets/dax/text-and-formatting.md +0 -316
- package/library/snippets/dax/time-intelligence.md +0 -196
- package/library/snippets/dax/user-defined-functions.md +0 -477
- package/library/snippets/dax/virtual-tables.md +0 -546
- package/library/snippets/excel-formulas/README.md +0 -84
- package/library/snippets/excel-formulas/aggregations.md +0 -330
- package/library/snippets/excel-formulas/dates-and-times.md +0 -361
- package/library/snippets/excel-formulas/dynamic-arrays.md +0 -314
- package/library/snippets/excel-formulas/lookups.md +0 -169
- package/library/snippets/excel-formulas/text-functions.md +0 -363
- package/library/snippets/governance/naming-conventions.md +0 -97
- package/library/snippets/governance/review-checklists.md +0 -107
- package/library/snippets/power-query/README.md +0 -389
- package/library/snippets/power-query/api-integration.md +0 -707
- package/library/snippets/power-query/connections.md +0 -434
- package/library/snippets/power-query/data-cleaning.md +0 -298
- package/library/snippets/power-query/error-handling.md +0 -526
- package/library/snippets/power-query/parameters.md +0 -350
- package/library/snippets/power-query/performance.md +0 -506
- package/library/snippets/power-query/transformations.md +0 -330
- package/library/snippets/report-design/accessibility.md +0 -78
- package/library/snippets/report-design/chart-selection.md +0 -54
- package/library/snippets/report-design/layout-patterns.md +0 -87
- package/library/templates/data-models/README.md +0 -93
- package/library/templates/data-models/finance-model.md +0 -627
- package/library/templates/data-models/retail-star-schema.md +0 -473
- package/library/templates/excel/README.md +0 -83
- package/library/templates/excel/budget-tracker.md +0 -432
- package/library/templates/excel/data-entry-form.md +0 -533
- package/library/templates/power-bi/README.md +0 -72
- package/library/templates/power-bi/finance-report.md +0 -449
- package/library/templates/power-bi/kpi-scorecard.md +0 -461
- package/library/templates/power-bi/sales-dashboard.md +0 -281
- package/library/themes/excel/README.md +0 -436
- package/library/themes/power-bi/README.md +0 -271
- package/library/themes/power-bi/accessible.json +0 -307
- package/library/themes/power-bi/bi-superpowers-default.json +0 -858
- package/library/themes/power-bi/corporate-blue.json +0 -291
- package/library/themes/power-bi/dark-mode.json +0 -291
- package/library/themes/power-bi/minimal.json +0 -292
- package/library/themes/power-bi/print-friendly.json +0 -309
|
@@ -1,858 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "BI Agent Superpowers Default",
|
|
3
|
-
"description": "Shadcn/UI inspired theme with IBCS-compliant data colors",
|
|
4
|
-
|
|
5
|
-
"dataColors": [
|
|
6
|
-
"#000000",
|
|
7
|
-
"#737373",
|
|
8
|
-
"#A3A3A3",
|
|
9
|
-
"#D4D4D4",
|
|
10
|
-
"#166534",
|
|
11
|
-
"#991B1B",
|
|
12
|
-
"#404040",
|
|
13
|
-
"#525252"
|
|
14
|
-
],
|
|
15
|
-
|
|
16
|
-
"background": "#FFFFFF",
|
|
17
|
-
"foreground": "#171717",
|
|
18
|
-
"tableAccent": "#171717",
|
|
19
|
-
|
|
20
|
-
"maximum": "#166534",
|
|
21
|
-
"center": "#737373",
|
|
22
|
-
"minimum": "#991B1B",
|
|
23
|
-
"neutral": "#737373",
|
|
24
|
-
|
|
25
|
-
"bad": "#991B1B",
|
|
26
|
-
"good": "#166534",
|
|
27
|
-
|
|
28
|
-
"textClasses": {
|
|
29
|
-
"callout": {
|
|
30
|
-
"fontFace": "'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
|
|
31
|
-
"fontSize": 28,
|
|
32
|
-
"color": "#171717"
|
|
33
|
-
},
|
|
34
|
-
"title": {
|
|
35
|
-
"fontFace": "'Segoe UI Semibold', system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
|
|
36
|
-
"fontSize": 14,
|
|
37
|
-
"color": "#171717"
|
|
38
|
-
},
|
|
39
|
-
"header": {
|
|
40
|
-
"fontFace": "'Segoe UI Semibold', system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
|
|
41
|
-
"fontSize": 12,
|
|
42
|
-
"color": "#171717"
|
|
43
|
-
},
|
|
44
|
-
"label": {
|
|
45
|
-
"fontFace": "'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
|
|
46
|
-
"fontSize": 10,
|
|
47
|
-
"color": "#525252"
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
|
|
51
|
-
"visualStyles": {
|
|
52
|
-
"*": {
|
|
53
|
-
"*": {
|
|
54
|
-
"general": [{
|
|
55
|
-
"responsive": true,
|
|
56
|
-
"keepLayerOrder": true
|
|
57
|
-
}],
|
|
58
|
-
"background": [{
|
|
59
|
-
"show": true,
|
|
60
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
61
|
-
"transparency": 0
|
|
62
|
-
}],
|
|
63
|
-
"border": [{
|
|
64
|
-
"show": true,
|
|
65
|
-
"color": { "solid": { "color": "#E5E5E5" } },
|
|
66
|
-
"radius": 10
|
|
67
|
-
}],
|
|
68
|
-
"title": [{
|
|
69
|
-
"show": true,
|
|
70
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
71
|
-
"background": { "solid": { "color": "transparent" } },
|
|
72
|
-
"alignment": "left",
|
|
73
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif",
|
|
74
|
-
"fontSize": 14
|
|
75
|
-
}],
|
|
76
|
-
"lockAspect": [{
|
|
77
|
-
"show": true
|
|
78
|
-
}],
|
|
79
|
-
"dropShadow": [{
|
|
80
|
-
"show": false
|
|
81
|
-
}],
|
|
82
|
-
"visualHeader": [{
|
|
83
|
-
"show": false
|
|
84
|
-
}],
|
|
85
|
-
"visualHeaderTooltip": [{
|
|
86
|
-
"show": true
|
|
87
|
-
}]
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
|
|
91
|
-
"page": {
|
|
92
|
-
"*": {
|
|
93
|
-
"background": [{
|
|
94
|
-
"color": { "solid": { "color": "#FAFAFA" } },
|
|
95
|
-
"transparency": 0
|
|
96
|
-
}],
|
|
97
|
-
"outspace": [{
|
|
98
|
-
"color": { "solid": { "color": "#F5F5F5" } }
|
|
99
|
-
}],
|
|
100
|
-
"outspacePane": [{
|
|
101
|
-
"backgroundColor": { "solid": { "color": "#F5F5F5" } }
|
|
102
|
-
}]
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
|
|
106
|
-
"card": {
|
|
107
|
-
"*": {
|
|
108
|
-
"labels": [{
|
|
109
|
-
"color": { "solid": { "color": "#171717" } },
|
|
110
|
-
"fontSize": 28,
|
|
111
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
112
|
-
"labelDisplayUnits": "0",
|
|
113
|
-
"labelPrecision": 0
|
|
114
|
-
}],
|
|
115
|
-
"categoryLabels": [{
|
|
116
|
-
"show": true,
|
|
117
|
-
"color": { "solid": { "color": "#737373" } },
|
|
118
|
-
"fontSize": 10,
|
|
119
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
120
|
-
}],
|
|
121
|
-
"wordWrap": [{
|
|
122
|
-
"show": true
|
|
123
|
-
}],
|
|
124
|
-
"background": [{
|
|
125
|
-
"show": true,
|
|
126
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
127
|
-
"transparency": 0
|
|
128
|
-
}],
|
|
129
|
-
"border": [{
|
|
130
|
-
"show": true,
|
|
131
|
-
"color": { "solid": { "color": "#E5E5E5" } },
|
|
132
|
-
"radius": 10
|
|
133
|
-
}]
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
|
|
137
|
-
"multiRowCard": {
|
|
138
|
-
"*": {
|
|
139
|
-
"dataLabels": [{
|
|
140
|
-
"color": { "solid": { "color": "#171717" } },
|
|
141
|
-
"fontSize": 16,
|
|
142
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif"
|
|
143
|
-
}],
|
|
144
|
-
"categoryLabels": [{
|
|
145
|
-
"show": true,
|
|
146
|
-
"color": { "solid": { "color": "#737373" } },
|
|
147
|
-
"fontSize": 10,
|
|
148
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
149
|
-
}],
|
|
150
|
-
"cardTitle": [{
|
|
151
|
-
"color": { "solid": { "color": "#171717" } },
|
|
152
|
-
"fontSize": 12,
|
|
153
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif"
|
|
154
|
-
}],
|
|
155
|
-
"card": [{
|
|
156
|
-
"outline": "None",
|
|
157
|
-
"barShow": false
|
|
158
|
-
}],
|
|
159
|
-
"background": [{
|
|
160
|
-
"show": true,
|
|
161
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
162
|
-
"transparency": 0
|
|
163
|
-
}],
|
|
164
|
-
"border": [{
|
|
165
|
-
"show": true,
|
|
166
|
-
"color": { "solid": { "color": "#E5E5E5" } },
|
|
167
|
-
"radius": 10
|
|
168
|
-
}]
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
|
|
172
|
-
"clusteredColumnChart": {
|
|
173
|
-
"*": {
|
|
174
|
-
"legend": [{
|
|
175
|
-
"show": true,
|
|
176
|
-
"position": "Top",
|
|
177
|
-
"showTitle": false,
|
|
178
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
179
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
180
|
-
"fontSize": 10
|
|
181
|
-
}],
|
|
182
|
-
"categoryAxis": [{
|
|
183
|
-
"show": true,
|
|
184
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
185
|
-
"fontSize": 10,
|
|
186
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
187
|
-
"showAxisTitle": false
|
|
188
|
-
}],
|
|
189
|
-
"valueAxis": [{
|
|
190
|
-
"show": true,
|
|
191
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
192
|
-
"fontSize": 10,
|
|
193
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
194
|
-
"gridlineShow": true,
|
|
195
|
-
"gridlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
196
|
-
"gridlineThickness": 1,
|
|
197
|
-
"gridlineStyle": "solid",
|
|
198
|
-
"showAxisTitle": false
|
|
199
|
-
}],
|
|
200
|
-
"dataPoint": [{
|
|
201
|
-
"defaultColor": { "solid": { "color": "#000000" } }
|
|
202
|
-
}],
|
|
203
|
-
"labels": [{
|
|
204
|
-
"show": false,
|
|
205
|
-
"color": { "solid": { "color": "#525252" } },
|
|
206
|
-
"fontSize": 10,
|
|
207
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
208
|
-
}],
|
|
209
|
-
"plotArea": [{
|
|
210
|
-
"transparency": 0
|
|
211
|
-
}]
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
|
-
|
|
215
|
-
"clusteredBarChart": {
|
|
216
|
-
"*": {
|
|
217
|
-
"legend": [{
|
|
218
|
-
"show": true,
|
|
219
|
-
"position": "Top",
|
|
220
|
-
"showTitle": false,
|
|
221
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
222
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
223
|
-
"fontSize": 10
|
|
224
|
-
}],
|
|
225
|
-
"categoryAxis": [{
|
|
226
|
-
"show": true,
|
|
227
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
228
|
-
"fontSize": 10,
|
|
229
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
230
|
-
"showAxisTitle": false
|
|
231
|
-
}],
|
|
232
|
-
"valueAxis": [{
|
|
233
|
-
"show": true,
|
|
234
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
235
|
-
"fontSize": 10,
|
|
236
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
237
|
-
"gridlineShow": true,
|
|
238
|
-
"gridlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
239
|
-
"gridlineThickness": 1,
|
|
240
|
-
"gridlineStyle": "solid",
|
|
241
|
-
"showAxisTitle": false
|
|
242
|
-
}],
|
|
243
|
-
"dataPoint": [{
|
|
244
|
-
"defaultColor": { "solid": { "color": "#000000" } }
|
|
245
|
-
}],
|
|
246
|
-
"labels": [{
|
|
247
|
-
"show": false,
|
|
248
|
-
"color": { "solid": { "color": "#525252" } },
|
|
249
|
-
"fontSize": 10,
|
|
250
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
251
|
-
}]
|
|
252
|
-
}
|
|
253
|
-
},
|
|
254
|
-
|
|
255
|
-
"lineChart": {
|
|
256
|
-
"*": {
|
|
257
|
-
"legend": [{
|
|
258
|
-
"show": true,
|
|
259
|
-
"position": "Top",
|
|
260
|
-
"showTitle": false,
|
|
261
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
262
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
263
|
-
"fontSize": 10
|
|
264
|
-
}],
|
|
265
|
-
"categoryAxis": [{
|
|
266
|
-
"show": true,
|
|
267
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
268
|
-
"fontSize": 10,
|
|
269
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
270
|
-
"showAxisTitle": false
|
|
271
|
-
}],
|
|
272
|
-
"valueAxis": [{
|
|
273
|
-
"show": true,
|
|
274
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
275
|
-
"fontSize": 10,
|
|
276
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
277
|
-
"gridlineShow": true,
|
|
278
|
-
"gridlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
279
|
-
"gridlineThickness": 1,
|
|
280
|
-
"gridlineStyle": "solid",
|
|
281
|
-
"showAxisTitle": false
|
|
282
|
-
}],
|
|
283
|
-
"dataPoint": [{
|
|
284
|
-
"defaultColor": { "solid": { "color": "#000000" } }
|
|
285
|
-
}],
|
|
286
|
-
"labels": [{
|
|
287
|
-
"show": false,
|
|
288
|
-
"color": { "solid": { "color": "#525252" } },
|
|
289
|
-
"fontSize": 10,
|
|
290
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
291
|
-
}],
|
|
292
|
-
"lineStyles": [{
|
|
293
|
-
"strokeWidth": 2,
|
|
294
|
-
"lineStyle": "solid",
|
|
295
|
-
"showMarker": true,
|
|
296
|
-
"markerSize": 5
|
|
297
|
-
}]
|
|
298
|
-
}
|
|
299
|
-
},
|
|
300
|
-
|
|
301
|
-
"areaChart": {
|
|
302
|
-
"*": {
|
|
303
|
-
"legend": [{
|
|
304
|
-
"show": true,
|
|
305
|
-
"position": "Top",
|
|
306
|
-
"showTitle": false,
|
|
307
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
308
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
309
|
-
"fontSize": 10
|
|
310
|
-
}],
|
|
311
|
-
"categoryAxis": [{
|
|
312
|
-
"show": true,
|
|
313
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
314
|
-
"fontSize": 10,
|
|
315
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
316
|
-
"showAxisTitle": false
|
|
317
|
-
}],
|
|
318
|
-
"valueAxis": [{
|
|
319
|
-
"show": true,
|
|
320
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
321
|
-
"fontSize": 10,
|
|
322
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
323
|
-
"gridlineShow": true,
|
|
324
|
-
"gridlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
325
|
-
"gridlineThickness": 1,
|
|
326
|
-
"gridlineStyle": "solid",
|
|
327
|
-
"showAxisTitle": false
|
|
328
|
-
}],
|
|
329
|
-
"dataPoint": [{
|
|
330
|
-
"defaultColor": { "solid": { "color": "#000000" } }
|
|
331
|
-
}],
|
|
332
|
-
"labels": [{
|
|
333
|
-
"show": false
|
|
334
|
-
}]
|
|
335
|
-
}
|
|
336
|
-
},
|
|
337
|
-
|
|
338
|
-
"pieChart": {
|
|
339
|
-
"*": {
|
|
340
|
-
"legend": [{
|
|
341
|
-
"show": true,
|
|
342
|
-
"position": "Right",
|
|
343
|
-
"showTitle": false,
|
|
344
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
345
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
346
|
-
"fontSize": 10
|
|
347
|
-
}],
|
|
348
|
-
"labels": [{
|
|
349
|
-
"show": true,
|
|
350
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
351
|
-
"fontSize": 10,
|
|
352
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
353
|
-
"labelStyle": "Data"
|
|
354
|
-
}]
|
|
355
|
-
}
|
|
356
|
-
},
|
|
357
|
-
|
|
358
|
-
"donutChart": {
|
|
359
|
-
"*": {
|
|
360
|
-
"legend": [{
|
|
361
|
-
"show": true,
|
|
362
|
-
"position": "Right",
|
|
363
|
-
"showTitle": false,
|
|
364
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
365
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
366
|
-
"fontSize": 10
|
|
367
|
-
}],
|
|
368
|
-
"labels": [{
|
|
369
|
-
"show": true,
|
|
370
|
-
"color": { "solid": { "color": "#525252" } },
|
|
371
|
-
"fontSize": 10,
|
|
372
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
373
|
-
"labelStyle": "Data"
|
|
374
|
-
}]
|
|
375
|
-
}
|
|
376
|
-
},
|
|
377
|
-
|
|
378
|
-
"waterfallChart": {
|
|
379
|
-
"*": {
|
|
380
|
-
"legend": [{
|
|
381
|
-
"show": false
|
|
382
|
-
}],
|
|
383
|
-
"categoryAxis": [{
|
|
384
|
-
"show": true,
|
|
385
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
386
|
-
"fontSize": 10,
|
|
387
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
388
|
-
}],
|
|
389
|
-
"valueAxis": [{
|
|
390
|
-
"show": true,
|
|
391
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
392
|
-
"fontSize": 10,
|
|
393
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
394
|
-
"gridlineShow": true,
|
|
395
|
-
"gridlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
396
|
-
"gridlineThickness": 1
|
|
397
|
-
}],
|
|
398
|
-
"sentimentColors": [{
|
|
399
|
-
"increaseFill": { "solid": { "color": "#166534" } },
|
|
400
|
-
"decreaseFill": { "solid": { "color": "#991B1B" } },
|
|
401
|
-
"totalFill": { "solid": { "color": "#000000" } }
|
|
402
|
-
}],
|
|
403
|
-
"labels": [{
|
|
404
|
-
"show": true,
|
|
405
|
-
"color": { "solid": { "color": "#525252" } },
|
|
406
|
-
"fontSize": 10,
|
|
407
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
408
|
-
}]
|
|
409
|
-
}
|
|
410
|
-
},
|
|
411
|
-
|
|
412
|
-
"funnel": {
|
|
413
|
-
"*": {
|
|
414
|
-
"labels": [{
|
|
415
|
-
"show": true,
|
|
416
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
417
|
-
"fontSize": 10,
|
|
418
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
419
|
-
}],
|
|
420
|
-
"dataPoint": [{
|
|
421
|
-
"defaultColor": { "solid": { "color": "#000000" } }
|
|
422
|
-
}]
|
|
423
|
-
}
|
|
424
|
-
},
|
|
425
|
-
|
|
426
|
-
"gauge": {
|
|
427
|
-
"*": {
|
|
428
|
-
"gaugeAxis": [{
|
|
429
|
-
"min": 0,
|
|
430
|
-
"max": 100
|
|
431
|
-
}],
|
|
432
|
-
"dataPoint": [{
|
|
433
|
-
"target": { "solid": { "color": "#000000" } },
|
|
434
|
-
"fill": { "solid": { "color": "#166534" } }
|
|
435
|
-
}],
|
|
436
|
-
"labels": [{
|
|
437
|
-
"show": true,
|
|
438
|
-
"color": { "solid": { "color": "#171717" } },
|
|
439
|
-
"fontSize": 28,
|
|
440
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
441
|
-
}],
|
|
442
|
-
"calloutValue": [{
|
|
443
|
-
"show": true,
|
|
444
|
-
"color": { "solid": { "color": "#171717" } },
|
|
445
|
-
"fontSize": 28,
|
|
446
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
447
|
-
}]
|
|
448
|
-
}
|
|
449
|
-
},
|
|
450
|
-
|
|
451
|
-
"kpi": {
|
|
452
|
-
"*": {
|
|
453
|
-
"indicator": [{
|
|
454
|
-
"indicatorDisplayUnits": "0",
|
|
455
|
-
"fontSize": 28,
|
|
456
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
457
|
-
}],
|
|
458
|
-
"trendAxis": [{
|
|
459
|
-
"show": true
|
|
460
|
-
}],
|
|
461
|
-
"goals": [{
|
|
462
|
-
"show": true,
|
|
463
|
-
"color": { "solid": { "color": "#737373" } },
|
|
464
|
-
"fontSize": 10,
|
|
465
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
466
|
-
}],
|
|
467
|
-
"status": [{
|
|
468
|
-
"direction": "highIsGood",
|
|
469
|
-
"goodColor": { "solid": { "color": "#166534" } },
|
|
470
|
-
"neutralColor": { "solid": { "color": "#737373" } },
|
|
471
|
-
"badColor": { "solid": { "color": "#991B1B" } }
|
|
472
|
-
}]
|
|
473
|
-
}
|
|
474
|
-
},
|
|
475
|
-
|
|
476
|
-
"tableEx": {
|
|
477
|
-
"*": {
|
|
478
|
-
"general": [{
|
|
479
|
-
"responsive": true
|
|
480
|
-
}],
|
|
481
|
-
"grid": [{
|
|
482
|
-
"gridVertical": false,
|
|
483
|
-
"gridVerticalColor": { "solid": { "color": "#E5E5E5" } },
|
|
484
|
-
"gridVerticalWeight": 1,
|
|
485
|
-
"gridHorizontal": true,
|
|
486
|
-
"gridHorizontalColor": { "solid": { "color": "#E5E5E5" } },
|
|
487
|
-
"gridHorizontalWeight": 1,
|
|
488
|
-
"rowPadding": 4,
|
|
489
|
-
"outlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
490
|
-
"outlineWeight": 0,
|
|
491
|
-
"textSize": 10,
|
|
492
|
-
"imageHeight": 50
|
|
493
|
-
}],
|
|
494
|
-
"columnHeaders": [{
|
|
495
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
496
|
-
"backColor": { "solid": { "color": "#FAFAFA" } },
|
|
497
|
-
"outline": "None",
|
|
498
|
-
"autoSizeColumnWidth": true,
|
|
499
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif",
|
|
500
|
-
"fontSize": 10,
|
|
501
|
-
"alignment": "Left",
|
|
502
|
-
"wordWrap": true
|
|
503
|
-
}],
|
|
504
|
-
"values": [{
|
|
505
|
-
"fontColorPrimary": { "solid": { "color": "#171717" } },
|
|
506
|
-
"backColorPrimary": { "solid": { "color": "#FFFFFF" } },
|
|
507
|
-
"fontColorSecondary": { "solid": { "color": "#171717" } },
|
|
508
|
-
"backColorSecondary": { "solid": { "color": "#FAFAFA" } },
|
|
509
|
-
"outline": "None",
|
|
510
|
-
"wordWrap": false,
|
|
511
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
512
|
-
"fontSize": 10
|
|
513
|
-
}],
|
|
514
|
-
"total": [{
|
|
515
|
-
"totals": true,
|
|
516
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
517
|
-
"backColor": { "solid": { "color": "#F5F5F5" } },
|
|
518
|
-
"outline": "None",
|
|
519
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif",
|
|
520
|
-
"fontSize": 10
|
|
521
|
-
}],
|
|
522
|
-
"background": [{
|
|
523
|
-
"show": true,
|
|
524
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
525
|
-
"transparency": 0
|
|
526
|
-
}],
|
|
527
|
-
"border": [{
|
|
528
|
-
"show": true,
|
|
529
|
-
"color": { "solid": { "color": "#E5E5E5" } },
|
|
530
|
-
"radius": 10
|
|
531
|
-
}]
|
|
532
|
-
}
|
|
533
|
-
},
|
|
534
|
-
|
|
535
|
-
"pivotTable": {
|
|
536
|
-
"*": {
|
|
537
|
-
"general": [{
|
|
538
|
-
"responsive": true
|
|
539
|
-
}],
|
|
540
|
-
"grid": [{
|
|
541
|
-
"gridVertical": true,
|
|
542
|
-
"gridVerticalColor": { "solid": { "color": "#E5E5E5" } },
|
|
543
|
-
"gridVerticalWeight": 1,
|
|
544
|
-
"gridHorizontal": true,
|
|
545
|
-
"gridHorizontalColor": { "solid": { "color": "#E5E5E5" } },
|
|
546
|
-
"gridHorizontalWeight": 1,
|
|
547
|
-
"rowPadding": 4,
|
|
548
|
-
"outlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
549
|
-
"outlineWeight": 0,
|
|
550
|
-
"textSize": 10
|
|
551
|
-
}],
|
|
552
|
-
"columnHeaders": [{
|
|
553
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
554
|
-
"backColor": { "solid": { "color": "#FAFAFA" } },
|
|
555
|
-
"outline": "None",
|
|
556
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif",
|
|
557
|
-
"fontSize": 10,
|
|
558
|
-
"alignment": "Left",
|
|
559
|
-
"wordWrap": true
|
|
560
|
-
}],
|
|
561
|
-
"rowHeaders": [{
|
|
562
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
563
|
-
"backColor": { "solid": { "color": "#FAFAFA" } },
|
|
564
|
-
"outline": "None",
|
|
565
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif",
|
|
566
|
-
"fontSize": 10,
|
|
567
|
-
"alignment": "Left",
|
|
568
|
-
"wordWrap": true
|
|
569
|
-
}],
|
|
570
|
-
"values": [{
|
|
571
|
-
"fontColorPrimary": { "solid": { "color": "#171717" } },
|
|
572
|
-
"backColorPrimary": { "solid": { "color": "#FFFFFF" } },
|
|
573
|
-
"fontColorSecondary": { "solid": { "color": "#171717" } },
|
|
574
|
-
"backColorSecondary": { "solid": { "color": "#FAFAFA" } },
|
|
575
|
-
"outline": "None",
|
|
576
|
-
"wordWrap": false,
|
|
577
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
578
|
-
"fontSize": 10
|
|
579
|
-
}],
|
|
580
|
-
"subTotals": [{
|
|
581
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
582
|
-
"backColor": { "solid": { "color": "#F5F5F5" } },
|
|
583
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif",
|
|
584
|
-
"fontSize": 10
|
|
585
|
-
}],
|
|
586
|
-
"grandTotal": [{
|
|
587
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
588
|
-
"backColor": { "solid": { "color": "#E5E5E5" } },
|
|
589
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif",
|
|
590
|
-
"fontSize": 10
|
|
591
|
-
}],
|
|
592
|
-
"background": [{
|
|
593
|
-
"show": true,
|
|
594
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
595
|
-
"transparency": 0
|
|
596
|
-
}],
|
|
597
|
-
"border": [{
|
|
598
|
-
"show": true,
|
|
599
|
-
"color": { "solid": { "color": "#E5E5E5" } },
|
|
600
|
-
"radius": 10
|
|
601
|
-
}]
|
|
602
|
-
}
|
|
603
|
-
},
|
|
604
|
-
|
|
605
|
-
"slicer": {
|
|
606
|
-
"*": {
|
|
607
|
-
"general": [{
|
|
608
|
-
"responsive": true
|
|
609
|
-
}],
|
|
610
|
-
"data": [{
|
|
611
|
-
"mode": "Basic"
|
|
612
|
-
}],
|
|
613
|
-
"selection": [{
|
|
614
|
-
"selectAllCheckboxEnabled": true,
|
|
615
|
-
"singleSelect": false
|
|
616
|
-
}],
|
|
617
|
-
"header": [{
|
|
618
|
-
"show": true,
|
|
619
|
-
"fontColor": { "solid": { "color": "#171717" } },
|
|
620
|
-
"background": { "solid": { "color": "transparent" } },
|
|
621
|
-
"textSize": 12,
|
|
622
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif"
|
|
623
|
-
}],
|
|
624
|
-
"items": [{
|
|
625
|
-
"fontColor": { "solid": { "color": "#525252" } },
|
|
626
|
-
"background": { "solid": { "color": "transparent" } },
|
|
627
|
-
"textSize": 10,
|
|
628
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
629
|
-
}],
|
|
630
|
-
"background": [{
|
|
631
|
-
"show": true,
|
|
632
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
633
|
-
"transparency": 0
|
|
634
|
-
}],
|
|
635
|
-
"border": [{
|
|
636
|
-
"show": true,
|
|
637
|
-
"color": { "solid": { "color": "#E5E5E5" } },
|
|
638
|
-
"radius": 10
|
|
639
|
-
}]
|
|
640
|
-
}
|
|
641
|
-
},
|
|
642
|
-
|
|
643
|
-
"scatterChart": {
|
|
644
|
-
"*": {
|
|
645
|
-
"legend": [{
|
|
646
|
-
"show": true,
|
|
647
|
-
"position": "Top",
|
|
648
|
-
"showTitle": false,
|
|
649
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
650
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
651
|
-
"fontSize": 10
|
|
652
|
-
}],
|
|
653
|
-
"categoryAxis": [{
|
|
654
|
-
"show": true,
|
|
655
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
656
|
-
"fontSize": 10,
|
|
657
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
658
|
-
"gridlineShow": true,
|
|
659
|
-
"gridlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
660
|
-
"gridlineThickness": 1,
|
|
661
|
-
"showAxisTitle": true
|
|
662
|
-
}],
|
|
663
|
-
"valueAxis": [{
|
|
664
|
-
"show": true,
|
|
665
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
666
|
-
"fontSize": 10,
|
|
667
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
668
|
-
"gridlineShow": true,
|
|
669
|
-
"gridlineColor": { "solid": { "color": "#E5E5E5" } },
|
|
670
|
-
"gridlineThickness": 1,
|
|
671
|
-
"showAxisTitle": true
|
|
672
|
-
}],
|
|
673
|
-
"dataPoint": [{
|
|
674
|
-
"defaultColor": { "solid": { "color": "#000000" } }
|
|
675
|
-
}],
|
|
676
|
-
"categoryLabels": [{
|
|
677
|
-
"show": false,
|
|
678
|
-
"color": { "solid": { "color": "#525252" } },
|
|
679
|
-
"fontSize": 10,
|
|
680
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
681
|
-
}]
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
|
-
|
|
685
|
-
"treemap": {
|
|
686
|
-
"*": {
|
|
687
|
-
"legend": [{
|
|
688
|
-
"show": true,
|
|
689
|
-
"position": "Top",
|
|
690
|
-
"showTitle": false,
|
|
691
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
692
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
693
|
-
"fontSize": 10
|
|
694
|
-
}],
|
|
695
|
-
"labels": [{
|
|
696
|
-
"show": true,
|
|
697
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
698
|
-
"fontSize": 10,
|
|
699
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
700
|
-
}],
|
|
701
|
-
"categoryLabels": [{
|
|
702
|
-
"show": true,
|
|
703
|
-
"color": { "solid": { "color": "#FFFFFF" } },
|
|
704
|
-
"fontSize": 12,
|
|
705
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif"
|
|
706
|
-
}]
|
|
707
|
-
}
|
|
708
|
-
},
|
|
709
|
-
|
|
710
|
-
"map": {
|
|
711
|
-
"*": {
|
|
712
|
-
"legend": [{
|
|
713
|
-
"show": true,
|
|
714
|
-
"position": "Top",
|
|
715
|
-
"showTitle": false,
|
|
716
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
717
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
718
|
-
"fontSize": 10
|
|
719
|
-
}],
|
|
720
|
-
"dataPoint": [{
|
|
721
|
-
"defaultColor": { "solid": { "color": "#000000" } }
|
|
722
|
-
}],
|
|
723
|
-
"categoryLabels": [{
|
|
724
|
-
"show": true,
|
|
725
|
-
"color": { "solid": { "color": "#171717" } },
|
|
726
|
-
"fontSize": 10,
|
|
727
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
728
|
-
}]
|
|
729
|
-
}
|
|
730
|
-
},
|
|
731
|
-
|
|
732
|
-
"filledMap": {
|
|
733
|
-
"*": {
|
|
734
|
-
"legend": [{
|
|
735
|
-
"show": true,
|
|
736
|
-
"position": "Top",
|
|
737
|
-
"showTitle": false,
|
|
738
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
739
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
740
|
-
"fontSize": 10
|
|
741
|
-
}],
|
|
742
|
-
"dataPoint": [{
|
|
743
|
-
"defaultColor": { "solid": { "color": "#000000" } },
|
|
744
|
-
"nullColorDefault": { "solid": { "color": "#E5E5E5" } }
|
|
745
|
-
}],
|
|
746
|
-
"labels": [{
|
|
747
|
-
"show": false,
|
|
748
|
-
"color": { "solid": { "color": "#171717" } },
|
|
749
|
-
"fontSize": 10,
|
|
750
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
751
|
-
}]
|
|
752
|
-
}
|
|
753
|
-
},
|
|
754
|
-
|
|
755
|
-
"shapeMap": {
|
|
756
|
-
"*": {
|
|
757
|
-
"legend": [{
|
|
758
|
-
"show": true,
|
|
759
|
-
"position": "Top",
|
|
760
|
-
"showTitle": false,
|
|
761
|
-
"labelColor": { "solid": { "color": "#525252" } },
|
|
762
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif",
|
|
763
|
-
"fontSize": 10
|
|
764
|
-
}],
|
|
765
|
-
"dataPoint": [{
|
|
766
|
-
"defaultColor": { "solid": { "color": "#000000" } },
|
|
767
|
-
"nullColorDefault": { "solid": { "color": "#E5E5E5" } }
|
|
768
|
-
}],
|
|
769
|
-
"labels": [{
|
|
770
|
-
"show": true,
|
|
771
|
-
"color": { "solid": { "color": "#171717" } },
|
|
772
|
-
"fontSize": 10,
|
|
773
|
-
"fontFamily": "'Segoe UI', system-ui, sans-serif"
|
|
774
|
-
}]
|
|
775
|
-
}
|
|
776
|
-
},
|
|
777
|
-
|
|
778
|
-
"textbox": {
|
|
779
|
-
"*": {
|
|
780
|
-
"general": [{
|
|
781
|
-
"responsive": true
|
|
782
|
-
}],
|
|
783
|
-
"background": [{
|
|
784
|
-
"show": false,
|
|
785
|
-
"color": { "solid": { "color": "transparent" } },
|
|
786
|
-
"transparency": 100
|
|
787
|
-
}],
|
|
788
|
-
"border": [{
|
|
789
|
-
"show": false
|
|
790
|
-
}]
|
|
791
|
-
}
|
|
792
|
-
},
|
|
793
|
-
|
|
794
|
-
"image": {
|
|
795
|
-
"*": {
|
|
796
|
-
"general": [{
|
|
797
|
-
"responsive": true
|
|
798
|
-
}],
|
|
799
|
-
"background": [{
|
|
800
|
-
"show": false,
|
|
801
|
-
"color": { "solid": { "color": "transparent" } },
|
|
802
|
-
"transparency": 100
|
|
803
|
-
}],
|
|
804
|
-
"border": [{
|
|
805
|
-
"show": false
|
|
806
|
-
}]
|
|
807
|
-
}
|
|
808
|
-
},
|
|
809
|
-
|
|
810
|
-
"shape": {
|
|
811
|
-
"*": {
|
|
812
|
-
"general": [{
|
|
813
|
-
"responsive": true
|
|
814
|
-
}],
|
|
815
|
-
"line": [{
|
|
816
|
-
"lineColor": { "solid": { "color": "#E5E5E5" } },
|
|
817
|
-
"weight": 1,
|
|
818
|
-
"transparency": 0
|
|
819
|
-
}],
|
|
820
|
-
"fill": [{
|
|
821
|
-
"show": true,
|
|
822
|
-
"fillColor": { "solid": { "color": "#FFFFFF" } },
|
|
823
|
-
"transparency": 0
|
|
824
|
-
}],
|
|
825
|
-
"rotation": [{
|
|
826
|
-
"angle": 0
|
|
827
|
-
}]
|
|
828
|
-
}
|
|
829
|
-
},
|
|
830
|
-
|
|
831
|
-
"actionButton": {
|
|
832
|
-
"*": {
|
|
833
|
-
"general": [{
|
|
834
|
-
"responsive": true
|
|
835
|
-
}],
|
|
836
|
-
"fill": [{
|
|
837
|
-
"show": true,
|
|
838
|
-
"fillColor": { "solid": { "color": "#171717" } },
|
|
839
|
-
"transparency": 0
|
|
840
|
-
}],
|
|
841
|
-
"outline": [{
|
|
842
|
-
"show": false,
|
|
843
|
-
"lineColor": { "solid": { "color": "#171717" } },
|
|
844
|
-
"weight": 1
|
|
845
|
-
}],
|
|
846
|
-
"text": [{
|
|
847
|
-
"show": true,
|
|
848
|
-
"fontColor": { "solid": { "color": "#FFFFFF" } },
|
|
849
|
-
"fontSize": 12,
|
|
850
|
-
"fontFamily": "'Segoe UI Semibold', system-ui, sans-serif"
|
|
851
|
-
}],
|
|
852
|
-
"icon": [{
|
|
853
|
-
"show": false
|
|
854
|
-
}]
|
|
855
|
-
}
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
}
|