@luquimbo/bi-superpowers 1.0.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/plugin.json +8 -0
- package/.mcp.json +25 -0
- package/AGENTS.md +244 -0
- package/CHANGELOG.md +265 -0
- package/LICENSE +21 -0
- package/README.md +211 -0
- package/bin/build-plugin.js +30 -0
- package/bin/cli.js +1064 -0
- package/bin/commands/add.js +533 -0
- package/bin/commands/add.test.js +77 -0
- package/bin/commands/build-desktop.js +166 -0
- package/bin/commands/changelog.js +443 -0
- package/bin/commands/diff.js +325 -0
- package/bin/commands/lint.js +419 -0
- package/bin/commands/lint.test.js +103 -0
- package/bin/commands/mcp-setup.js +246 -0
- package/bin/commands/pull.js +287 -0
- package/bin/commands/pull.test.js +36 -0
- package/bin/commands/push.js +231 -0
- package/bin/commands/push.test.js +14 -0
- package/bin/commands/search.js +344 -0
- package/bin/commands/search.test.js +115 -0
- package/bin/commands/setup.js +545 -0
- package/bin/commands/setup.test.js +46 -0
- package/bin/commands/sync-profile.js +405 -0
- package/bin/commands/sync-profile.test.js +14 -0
- package/bin/commands/sync-source.js +418 -0
- package/bin/commands/sync-source.test.js +14 -0
- package/bin/commands/watch.js +206 -0
- package/bin/lib/generators/claude-plugin.js +266 -0
- package/bin/lib/generators/claude-plugin.test.js +110 -0
- package/bin/lib/generators/index.js +116 -0
- package/bin/lib/generators/shared.js +282 -0
- package/bin/lib/licensing/index.js +35 -0
- package/bin/lib/licensing/storage.js +364 -0
- package/bin/lib/licensing/storage.test.js +55 -0
- package/bin/lib/licensing/validator.js +213 -0
- package/bin/lib/licensing/validator.test.js +137 -0
- package/bin/lib/microsoft-mcp.js +176 -0
- package/bin/lib/microsoft-mcp.test.js +106 -0
- package/bin/lib/skills.js +84 -0
- package/bin/mcp/powerbi-modeling-launcher.js +38 -0
- package/bin/postinstall.js +44 -0
- package/bin/utils/errors.js +159 -0
- package/bin/utils/git.js +298 -0
- package/bin/utils/logger.js +142 -0
- package/bin/utils/mcp-detect.js +274 -0
- package/bin/utils/mcp-detect.test.js +105 -0
- package/bin/utils/pbix.js +305 -0
- package/bin/utils/pbix.test.js +37 -0
- package/bin/utils/profiles.js +312 -0
- package/bin/utils/projects.js +168 -0
- package/bin/utils/readline.js +206 -0
- package/bin/utils/readline.test.js +47 -0
- package/bin/utils/tui.js +314 -0
- package/bin/utils/tui.test.js +127 -0
- package/commands/contributions.md +265 -0
- package/commands/data-model-design.md +468 -0
- package/commands/dax-doctor.md +248 -0
- package/commands/fabric-scripts.md +452 -0
- package/commands/migration-assistant.md +290 -0
- package/commands/model-documenter.md +242 -0
- package/commands/pbi-connect.md +239 -0
- package/commands/project-kickoff.md +905 -0
- package/commands/report-layout.md +296 -0
- package/commands/rls-design.md +533 -0
- package/commands/theme-tweaker.md +624 -0
- package/config.example.json +23 -0
- package/config.json +23 -0
- package/desktop-extension/manifest.json +37 -0
- package/desktop-extension/package.json +10 -0
- package/desktop-extension/server.js +95 -0
- package/docs/openrouter-free-models.md +92 -0
- package/library/examples/README.md +151 -0
- package/library/examples/finance-reporting/README.md +351 -0
- package/library/examples/finance-reporting/data-model.md +267 -0
- package/library/examples/finance-reporting/measures.dax +557 -0
- package/library/examples/hr-analytics/README.md +371 -0
- package/library/examples/hr-analytics/data-model.md +315 -0
- package/library/examples/hr-analytics/measures.dax +460 -0
- package/library/examples/marketing-analytics/README.md +37 -0
- package/library/examples/marketing-analytics/data-model.md +62 -0
- package/library/examples/marketing-analytics/measures.dax +110 -0
- package/library/examples/retail-analytics/README.md +439 -0
- package/library/examples/retail-analytics/data-model.md +288 -0
- package/library/examples/retail-analytics/measures.dax +481 -0
- package/library/examples/supply-chain/README.md +37 -0
- package/library/examples/supply-chain/data-model.md +69 -0
- package/library/examples/supply-chain/measures.dax +77 -0
- package/library/examples/udf-library/README.md +228 -0
- package/library/examples/udf-library/functions.dax +571 -0
- package/library/snippets/dax/README.md +292 -0
- package/library/snippets/dax/business-domains.md +576 -0
- package/library/snippets/dax/calculate-patterns.md +276 -0
- package/library/snippets/dax/calculation-groups.md +489 -0
- package/library/snippets/dax/error-handling.md +495 -0
- package/library/snippets/dax/iterators-and-aggregations.md +474 -0
- package/library/snippets/dax/kpis-and-metrics.md +293 -0
- package/library/snippets/dax/rankings-and-topn.md +235 -0
- package/library/snippets/dax/security-patterns.md +413 -0
- package/library/snippets/dax/text-and-formatting.md +316 -0
- package/library/snippets/dax/time-intelligence.md +196 -0
- package/library/snippets/dax/user-defined-functions.md +477 -0
- package/library/snippets/dax/virtual-tables.md +546 -0
- package/library/snippets/excel-formulas/README.md +84 -0
- package/library/snippets/excel-formulas/aggregations.md +330 -0
- package/library/snippets/excel-formulas/dates-and-times.md +361 -0
- package/library/snippets/excel-formulas/dynamic-arrays.md +314 -0
- package/library/snippets/excel-formulas/lookups.md +169 -0
- package/library/snippets/excel-formulas/text-functions.md +363 -0
- package/library/snippets/governance/naming-conventions.md +97 -0
- package/library/snippets/governance/review-checklists.md +107 -0
- package/library/snippets/power-query/README.md +389 -0
- package/library/snippets/power-query/api-integration.md +707 -0
- package/library/snippets/power-query/connections.md +434 -0
- package/library/snippets/power-query/data-cleaning.md +298 -0
- package/library/snippets/power-query/error-handling.md +526 -0
- package/library/snippets/power-query/parameters.md +350 -0
- package/library/snippets/power-query/performance.md +506 -0
- package/library/snippets/power-query/transformations.md +330 -0
- package/library/snippets/report-design/accessibility.md +78 -0
- package/library/snippets/report-design/chart-selection.md +54 -0
- package/library/snippets/report-design/layout-patterns.md +87 -0
- package/library/templates/data-models/README.md +93 -0
- package/library/templates/data-models/finance-model.md +627 -0
- package/library/templates/data-models/retail-star-schema.md +473 -0
- package/library/templates/excel/README.md +83 -0
- package/library/templates/excel/budget-tracker.md +432 -0
- package/library/templates/excel/data-entry-form.md +533 -0
- package/library/templates/power-bi/README.md +72 -0
- package/library/templates/power-bi/finance-report.md +449 -0
- package/library/templates/power-bi/kpi-scorecard.md +461 -0
- package/library/templates/power-bi/sales-dashboard.md +281 -0
- package/library/themes/excel/README.md +436 -0
- package/library/themes/power-bi/README.md +271 -0
- package/library/themes/power-bi/accessible.json +307 -0
- package/library/themes/power-bi/bi-superpowers-default.json +858 -0
- package/library/themes/power-bi/corporate-blue.json +291 -0
- package/library/themes/power-bi/dark-mode.json +291 -0
- package/library/themes/power-bi/minimal.json +292 -0
- package/library/themes/power-bi/print-friendly.json +309 -0
- package/package.json +93 -0
- package/skills/contributions/SKILL.md +267 -0
- package/skills/data-model-design/SKILL.md +470 -0
- package/skills/data-modeling/SKILL.md +254 -0
- package/skills/data-quality/SKILL.md +664 -0
- package/skills/dax/SKILL.md +708 -0
- package/skills/dax-doctor/SKILL.md +250 -0
- package/skills/dax-udf/SKILL.md +489 -0
- package/skills/deployment/SKILL.md +320 -0
- package/skills/excel-formulas/SKILL.md +463 -0
- package/skills/fabric-scripts/SKILL.md +454 -0
- package/skills/fast-standard/SKILL.md +509 -0
- package/skills/governance/SKILL.md +205 -0
- package/skills/migration-assistant/SKILL.md +292 -0
- package/skills/model-documenter/SKILL.md +244 -0
- package/skills/pbi-connect/SKILL.md +241 -0
- package/skills/power-query/SKILL.md +406 -0
- package/skills/project-kickoff/SKILL.md +907 -0
- package/skills/query-performance/SKILL.md +480 -0
- package/skills/report-design/SKILL.md +207 -0
- package/skills/report-layout/SKILL.md +298 -0
- package/skills/rls-design/SKILL.md +535 -0
- package/skills/semantic-model/SKILL.md +237 -0
- package/skills/testing-validation/SKILL.md +643 -0
- package/skills/theme-tweaker/SKILL.md +626 -0
- package/src/content/base.md +237 -0
- package/src/content/mcp-requirements.json +69 -0
- package/src/content/routing.md +203 -0
- package/src/content/skills/contributions.md +259 -0
- package/src/content/skills/data-model-design.md +462 -0
- package/src/content/skills/data-modeling.md +246 -0
- package/src/content/skills/data-quality.md +656 -0
- package/src/content/skills/dax-doctor.md +242 -0
- package/src/content/skills/dax-udf.md +481 -0
- package/src/content/skills/dax.md +700 -0
- package/src/content/skills/deployment.md +312 -0
- package/src/content/skills/excel-formulas.md +455 -0
- package/src/content/skills/fabric-scripts.md +446 -0
- package/src/content/skills/fast-standard.md +501 -0
- package/src/content/skills/governance.md +197 -0
- package/src/content/skills/migration-assistant.md +284 -0
- package/src/content/skills/model-documenter.md +236 -0
- package/src/content/skills/pbi-connect.md +233 -0
- package/src/content/skills/power-query.md +398 -0
- package/src/content/skills/project-kickoff.md +899 -0
- package/src/content/skills/query-performance.md +472 -0
- package/src/content/skills/report-design.md +199 -0
- package/src/content/skills/report-layout.md +290 -0
- package/src/content/skills/rls-design.md +527 -0
- package/src/content/skills/semantic-model.md +229 -0
- package/src/content/skills/testing-validation.md +635 -0
- package/src/content/skills/theme-tweaker.md +618 -0
|
@@ -0,0 +1,858 @@
|
|
|
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
|
+
}
|