@cdc/dashboard 4.26.2 → 4.26.4

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.
Files changed (109) hide show
  1. package/CONFIG.md +172 -0
  2. package/README.md +60 -20
  3. package/dist/cdcdashboard-CY9IcPSi.es.js +6 -0
  4. package/dist/cdcdashboard-DlpiY3fQ.es.js +4 -0
  5. package/dist/cdcdashboard.js +56686 -50281
  6. package/examples/__data__/data-2.json +6 -0
  7. package/examples/__data__/data-with-metadata.json +18 -0
  8. package/examples/__data__/data.json +6 -0
  9. package/examples/default.json +7 -36
  10. package/examples/legend-issue.json +1 -1
  11. package/examples/minimal-example.json +34 -0
  12. package/examples/private/dengue.json +4640 -0
  13. package/examples/private/inline-markup.json +775 -0
  14. package/examples/private/link_to_file.json +16662 -0
  15. package/examples/private/recent-update.json +1456 -0
  16. package/examples/private/toggle.json +10137 -0
  17. package/examples/sankey.json +3 -3
  18. package/examples/test-api-filter-reset.json +4 -4
  19. package/examples/tp5-test.json +86 -4
  20. package/package.json +9 -9
  21. package/src/CdcDashboard.tsx +2 -1
  22. package/src/CdcDashboardComponent.tsx +48 -28
  23. package/src/_stories/Dashboard.DataSetup.stories.tsx +6 -1
  24. package/src/_stories/Dashboard.Pages.smoke.stories.tsx +22 -0
  25. package/src/_stories/Dashboard.smoke.stories.tsx +33 -0
  26. package/src/_stories/Dashboard.stories.tsx +4523 -83
  27. package/src/_stories/_mock/dashboard-data-driven-colors.json +171 -0
  28. package/src/_stories/_mock/tab-simple-filter.json +153 -0
  29. package/src/_stories/_mock/tp5-test.json +86 -5
  30. package/src/components/DashboardEditors.tsx +15 -0
  31. package/src/components/DashboardFilters/DashboardFilters.test.tsx +129 -0
  32. package/src/components/DashboardFilters/DashboardFilters.tsx +29 -10
  33. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +12 -8
  34. package/src/components/DashboardFilters/DashboardFiltersEditor/components/APIModal.tsx +6 -4
  35. package/src/components/DashboardFilters/DashboardFiltersEditor/components/DeleteFilterModal.tsx +59 -58
  36. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.test.tsx +127 -0
  37. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +29 -6
  38. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +10 -9
  39. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +8 -8
  40. package/src/components/DashboardFilters/_stories/DashboardFilters.stories.tsx +1 -1
  41. package/src/components/DashboardFilters/dashboardfilter.styles.css +3 -3
  42. package/src/components/DataDesignerModal.tsx +2 -2
  43. package/src/components/ExpandCollapseButtons.tsx +6 -4
  44. package/src/components/Grid.tsx +4 -3
  45. package/src/components/Header/Header.tsx +27 -5
  46. package/src/components/Header/index.scss +1 -1
  47. package/src/components/MultiConfigTabs/MultiConfigTabs.tsx +141 -140
  48. package/src/components/MultiConfigTabs/multiconfigtabs.styles.css +6 -6
  49. package/src/components/Row.tsx +30 -8
  50. package/src/components/Toggle/toggle-style.css +7 -7
  51. package/src/components/VisualizationRow.tsx +81 -22
  52. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +2 -55
  53. package/src/components/VisualizationsPanel/visualizations-panel-styles.css +2 -2
  54. package/src/components/Widget/Widget.tsx +7 -6
  55. package/src/components/Widget/widget.styles.css +48 -17
  56. package/src/data/initial-state.js +2 -1
  57. package/src/helpers/addVisualization.ts +73 -0
  58. package/src/helpers/formatConfigBeforeSave.ts +1 -1
  59. package/src/helpers/getVizConfig.ts +13 -3
  60. package/src/helpers/iconHash.tsx +45 -36
  61. package/src/helpers/processDataLegacy.ts +19 -14
  62. package/src/helpers/tests/addVisualization.test.ts +52 -0
  63. package/src/helpers/tests/formatConfigBeforeSave.test.ts +81 -1
  64. package/src/scss/editor-panel.scss +1 -1
  65. package/src/scss/grid.scss +38 -8
  66. package/src/scss/main.scss +237 -40
  67. package/src/store/dashboard.reducer.ts +2 -1
  68. package/src/test/CdcDashboard.test.jsx +26 -2
  69. package/src/test/CdcDashboardComponent.test.tsx +74 -0
  70. package/src/types/FilterStyles.ts +2 -1
  71. package/src/types/SharedFilter.ts +1 -0
  72. package/tests/fixtures/dashboard-config-with-metadata.json +89 -0
  73. package/vite.config.js +2 -2
  74. package/dist/cdcdashboard-Cf9_fbQf.es.js +0 -6
  75. package/examples/DEV-6574.json +0 -2224
  76. package/examples/api-dashboard-data.json +0 -272
  77. package/examples/api-dashboard-years.json +0 -11
  78. package/examples/api-geographies-data.json +0 -11
  79. package/examples/chart-data.json +0 -5409
  80. package/examples/custom/css/respiratory.css +0 -236
  81. package/examples/custom/js/respiratory.js +0 -242
  82. package/examples/default-data.json +0 -368
  83. package/examples/default-filter-control.json +0 -209
  84. package/examples/default-multi-dataset-shared-filter.json +0 -1729
  85. package/examples/default-multi-dataset.json +0 -506
  86. package/examples/ed-visits-county-file.json +0 -402
  87. package/examples/filters/Alabama.json +0 -72
  88. package/examples/filters/Alaska.json +0 -1737
  89. package/examples/filters/Arkansas.json +0 -4713
  90. package/examples/filters/California.json +0 -212
  91. package/examples/filters/Colorado.json +0 -1500
  92. package/examples/filters/Connecticut.json +0 -559
  93. package/examples/filters/Delaware.json +0 -63
  94. package/examples/filters/DistrictofColumbia.json +0 -63
  95. package/examples/filters/Florida.json +0 -4217
  96. package/examples/filters/States.json +0 -146
  97. package/examples/state-level.json +0 -90136
  98. package/examples/state-points.json +0 -10474
  99. package/examples/temp-example-data.json +0 -130
  100. package/examples/test-dashboard-simple.json +0 -503
  101. package/examples/test-example.json +0 -752
  102. package/examples/test-file.json +0 -147
  103. package/examples/test.json +0 -752
  104. package/examples/testing.json +0 -94456
  105. /package/examples/{legend-issue-data.json → __data__/legend-issue-data.json} +0 -0
  106. /package/examples/api-test/{categories.json → __data__/categories.json} +0 -0
  107. /package/examples/api-test/{chart-data.json → __data__/chart-data.json} +0 -0
  108. /package/examples/api-test/{topics.json → __data__/topics.json} +0 -0
  109. /package/examples/api-test/{years.json → __data__/years.json} +0 -0
@@ -1,130 +0,0 @@
1
- [
2
- {
3
- "date": "2011-10-01",
4
- "New York": "89.4",
5
- "San Francisco": "26.7",
6
- "Austin": "34.2",
7
- "wind": "Include Wind",
8
- "humidity": "Include Humidiy"
9
- },
10
- {
11
- "date": "2011-10-02",
12
- "New York": "54.0",
13
- "San Francisco": "59.9",
14
- "Austin": "68.7",
15
- "wind": "Include Wind",
16
- "humidity": "Include Humidiy"
17
- },
18
- {
19
- "date": "2011-10-03",
20
- "New York": "51.3",
21
- "San Francisco": "53.1",
22
- "Austin": "64.4",
23
- "wind": "Include Wind",
24
- "humidity": "Include Humidiy"
25
- },
26
- {
27
- "date": "2011-10-04",
28
- "New York": "34.7",
29
- "San Francisco": "56.8",
30
- "Austin": "98.0",
31
- "wind": "Include Wind",
32
- "humidity": "Include Humidiy"
33
- },
34
- {
35
- "date": "2011-10-01",
36
- "New York": "32.4",
37
- "San Francisco": "43.7",
38
- "Austin": "54.2",
39
- "wind": "Don't Include Wind",
40
- "humidity": "Include Humidiy"
41
- },
42
- {
43
- "date": "2011-10-02",
44
- "New York": "65.0",
45
- "San Francisco": "76.9",
46
- "Austin": "87.7",
47
- "wind": "Don't Include Wind",
48
- "humidity": "Include Humidiy"
49
- },
50
- {
51
- "date": "2011-10-03",
52
- "New York": "53.3",
53
- "San Francisco": "59.1",
54
- "Austin": "69.4",
55
- "wind": "Don't Include Wind",
56
- "humidity": "Include Humidiy"
57
- },
58
- {
59
- "date": "2011-10-04",
60
- "New York": "55.7",
61
- "San Francisco": "58.8",
62
- "Austin": "68.0",
63
- "wind": "Don't Include Wind",
64
- "humidity": "Include Humidiy"
65
- },
66
- {
67
- "date": "2011-10-01",
68
- "New York": "63.4",
69
- "San Francisco": "62.7",
70
- "Austin": "72.2",
71
- "wind": "Include Wind",
72
- "humidity": "Don't Include Humidiy"
73
- },
74
- {
75
- "date": "2011-10-02",
76
- "New York": "58.0",
77
- "San Francisco": "59.9",
78
- "Austin": "67.7",
79
- "wind": "Include Wind",
80
- "humidity": "Don't Include Humidiy"
81
- },
82
- {
83
- "date": "2011-10-03",
84
- "New York": "53.3",
85
- "San Francisco": "59.1",
86
- "Austin": "69.4",
87
- "wind": "Include Wind",
88
- "humidity": "Don't Include Humidiy"
89
- },
90
- {
91
- "date": "2011-10-04",
92
- "New York": "55.7",
93
- "San Francisco": "58.8",
94
- "Austin": "68.0",
95
- "wind": "Include Wind",
96
- "humidity": "Don't Include Humidiy"
97
- },
98
- {
99
- "date": "2011-10-01",
100
- "New York": "63.4",
101
- "San Francisco": "62.7",
102
- "Austin": "87.2",
103
- "wind": "Don't Include Wind",
104
- "humidity": "Don't Include Humidiy"
105
- },
106
- {
107
- "date": "2011-10-02",
108
- "New York": "98.0",
109
- "San Francisco": "59.9",
110
- "Austin": "67.7",
111
- "wind": "Don't Include Wind",
112
- "humidity": "Don't Include Humidiy"
113
- },
114
- {
115
- "date": "2011-10-03",
116
- "New York": "53.3",
117
- "San Francisco": "59.1",
118
- "Austin": "69.4",
119
- "wind": "Don't Include Wind",
120
- "humidity": "Don't Include Humidiy"
121
- },
122
- {
123
- "date": "2011-10-04",
124
- "New York": "55.7",
125
- "San Francisco": "54.8",
126
- "Austin": "68.0",
127
- "wind": "Don't Include Wind",
128
- "humidity": "Don't Include Humidiy"
129
- }
130
- ]
@@ -1,503 +0,0 @@
1
- {
2
- "dashboard": {
3
- "sharedFilters": [
4
- {
5
- "key": "Geography",
6
- "type": "datafilter",
7
- "columnName": "geography",
8
- "showDropdown": true,
9
- "filterStyle": "dropdown",
10
- "defaultValue": "United States",
11
- "usedBy": [
12
- "chart1"
13
- ]
14
- },
15
- {
16
- "key": "Year",
17
- "type": "datafilter",
18
- "columnName": "year",
19
- "showDropdown": true,
20
- "filterStyle": "dropdown",
21
- "defaultValue": "2023",
22
- "usedBy": [
23
- "chart1"
24
- ]
25
- }
26
- ]
27
- },
28
- "rows": [
29
- {
30
- "uuid": "__​undefined__",
31
- "toggle": "__​undefined__",
32
- "equalHeight": "__​undefined__",
33
- "columns": [
34
- {
35
- "width": 12,
36
- "widget": "filters",
37
- "toggleName": "Filter Dropdowns"
38
- }
39
- ]
40
- },
41
- {
42
- "uuid": "__​undefined__",
43
- "toggle": "__​undefined__",
44
- "equalHeight": "__​undefined__",
45
- "columns": [
46
- {
47
- "width": 12,
48
- "widget": "chart1",
49
- "toggleName": "Chart"
50
- }
51
- ]
52
- }
53
- ],
54
- "visualizations": {
55
- "filters": {
56
- "type": "dashboardFilters",
57
- "visualizationType": "dashboardFilters",
58
- "uid": "filters",
59
- "sharedFilterIndexes": [
60
- 0,
61
- 1
62
- ],
63
- "filterBehavior": "Apply Button",
64
- "dashboardFilters": [
65
- {
66
- "columnName": "geography",
67
- "active": "United States",
68
- "values": [
69
- "California",
70
- "Texas",
71
- "United States"
72
- ]
73
- },
74
- {
75
- "columnName": "year",
76
- "active": "2021",
77
- "values": [
78
- "2021",
79
- "2022",
80
- "2023"
81
- ]
82
- }
83
- ]
84
- },
85
- "chart1": {
86
- "annotations": [],
87
- "allowLineToBarGraph": "__​undefined__",
88
- "type": "chart",
89
- "debugSvg": false,
90
- "chartMessage": {
91
- "noData": "No Data Available"
92
- },
93
- "title": "Test Chart",
94
- "showTitle": true,
95
- "showDownloadMediaButton": false,
96
- "theme": "theme-blue",
97
- "animate": false,
98
- "lineDatapointStyle": "hover",
99
- "lineDatapointColor": "Same as Line",
100
- "barHasBorder": "true",
101
- "isLollipopChart": false,
102
- "lollipopShape": "circle",
103
- "lollipopColorStyle": "two-tone",
104
- "visualizationSubType": "regular",
105
- "barStyle": "",
106
- "roundingStyle": "standard",
107
- "tipRounding": "top",
108
- "isResponsiveTicks": false,
109
- "general": {
110
- "annotationDropdownText": "Annotations",
111
- "showMissingDataLabel": true,
112
- "showSuppressedSymbol": true,
113
- "showZeroValueData": true,
114
- "hideNullValue": true,
115
- "palette": {
116
- "name": "sequential_blue",
117
- "version": "2.0",
118
- "isReversed": false
119
- }
120
- },
121
- "padding": {
122
- "left": 5,
123
- "right": 5
124
- },
125
- "preliminaryData": [],
126
- "yAxis": {
127
- "hideAxis": false,
128
- "displayNumbersOnBar": false,
129
- "hideLabel": false,
130
- "hideTicks": false,
131
- "size": 50,
132
- "gridLines": false,
133
- "enablePadding": false,
134
- "min": "",
135
- "max": "",
136
- "labelColor": "#1c1d1f",
137
- "tickLabelColor": "#1c1d1f",
138
- "tickColor": "#1c1d1f",
139
- "rightHideAxis": false,
140
- "rightAxisSize": 0,
141
- "rightLabel": "",
142
- "rightLabelOffsetSize": 0,
143
- "rightAxisLabelColor": "#1c1d1f",
144
- "rightAxisTickLabelColor": "#1c1d1f",
145
- "rightAxisTickColor": "#1c1d1f",
146
- "numTicks": "",
147
- "axisPadding": 0,
148
- "scalePadding": 10,
149
- "tickRotation": 0,
150
- "anchors": [],
151
- "shoMissingDataLabel": true,
152
- "showMissingDataLine": true,
153
- "categories": [],
154
- "label": "Value"
155
- },
156
- "boxplot": {
157
- "plots": [],
158
- "borders": "true",
159
- "plotOutlierValues": false,
160
- "plotNonOutlierValues": true,
161
- "labels": {
162
- "q1": "Lower Quartile",
163
- "q2": "q2",
164
- "q3": "Upper Quartile",
165
- "q4": "q4",
166
- "minimum": "Minimum",
167
- "maximum": "Maximum",
168
- "mean": "Mean",
169
- "median": "Median",
170
- "sd": "Standard Deviation",
171
- "iqr": "Interquartile Range",
172
- "count": "Count",
173
- "outliers": "Outliers",
174
- "values": "Values",
175
- "lowerBounds": "Lower Bounds",
176
- "upperBounds": "Upper Bounds"
177
- }
178
- },
179
- "topAxis": {
180
- "hasLine": false
181
- },
182
- "isLegendValue": false,
183
- "barThickness": 0.35,
184
- "barHeight": 25,
185
- "barSpace": 15,
186
- "heights": {
187
- "vertical": 300,
188
- "horizontal": 750
189
- },
190
- "xAxis": {
191
- "sortDates": false,
192
- "anchors": [],
193
- "type": "categorical",
194
- "showTargetLabel": true,
195
- "targetLabel": "Target",
196
- "hideAxis": false,
197
- "hideLabel": false,
198
- "hideTicks": false,
199
- "size": 75,
200
- "tickRotation": 0,
201
- "min": "",
202
- "max": "",
203
- "labelColor": "#1c1d1f",
204
- "tickLabelColor": "#1c1d1f",
205
- "tickColor": "#1c1d1f",
206
- "numTicks": "",
207
- "labelOffset": 0,
208
- "axisPadding": 200,
209
- "target": 0,
210
- "maxTickRotation": 0,
211
- "padding": 5,
212
- "showYearsOnce": false,
213
- "sortByRecentDate": false,
214
- "brushActive": false,
215
- "dataKey": "category",
216
- "axisBBox": 29.360000610351562,
217
- "tickWidthMax": 82
218
- },
219
- "table": {
220
- "label": "Data Table",
221
- "expanded": false,
222
- "limitHeight": false,
223
- "height": "",
224
- "caption": "",
225
- "showDownloadUrl": false,
226
- "showDataTableLink": true,
227
- "showDownloadLinkBelow": true,
228
- "indexLabel": "",
229
- "download": false,
230
- "showVertical": false,
231
- "dateDisplayFormat": "",
232
- "showMissingDataLabel": true,
233
- "showSuppressedSymbol": true,
234
- "collapsible": true,
235
- "sharedFilterColumns": [
236
- "geography",
237
- "year"
238
- ],
239
- "show": false
240
- },
241
- "orientation": "vertical",
242
- "columns": {},
243
- "legend": {
244
- "hide": false,
245
- "behavior": "isolate",
246
- "axisAlign": true,
247
- "singleRow": true,
248
- "colorCode": "",
249
- "reverseLabelOrder": false,
250
- "description": "",
251
- "dynamicLegend": false,
252
- "dynamicLegendDefaultText": "Show All",
253
- "dynamicLegendItemLimit": 5,
254
- "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
255
- "dynamicLegendChartMessage": "Select Options from the Legend",
256
- "label": "",
257
- "lineMode": false,
258
- "verticalSorted": false,
259
- "highlightOnHover": false,
260
- "hideSuppressedLabels": false,
261
- "hideSuppressionLink": false,
262
- "seriesHighlight": [],
263
- "style": "circles",
264
- "subStyle": "linear blocks",
265
- "groupBy": "",
266
- "shape": "circle",
267
- "tickRotation": "",
268
- "order": "dataColumn",
269
- "hideBorder": {
270
- "side": false,
271
- "topBottom": true
272
- },
273
- "position": "right",
274
- "orderedValues": [],
275
- "patterns": {},
276
- "patternField": "",
277
- "unified": true
278
- },
279
- "smallMultiples": {
280
- "mode": "",
281
- "tileColumn": "",
282
- "tilesPerRowDesktop": 3,
283
- "tilesPerRowMobile": 1,
284
- "tileOrder": [],
285
- "tileOrderType": "asc",
286
- "tileTitles": {},
287
- "independentYAxis": false,
288
- "colorMode": "same",
289
- "synchronizedTooltips": true,
290
- "showAreaUnderLine": true
291
- },
292
- "exclusions": {
293
- "active": false,
294
- "keys": []
295
- },
296
- "twoColor": {
297
- "palette": "monochrome-1",
298
- "isPaletteReversed": false
299
- },
300
- "labels": false,
301
- "dataFormat": {
302
- "commas": false,
303
- "prefix": "",
304
- "suffix": "",
305
- "abbreviated": false,
306
- "bottomSuffix": "",
307
- "bottomPrefix": "",
308
- "bottomAbbreviated": false
309
- },
310
- "filters": [],
311
- "confidenceKeys": {},
312
- "visual": {
313
- "border": true,
314
- "accent": true,
315
- "background": true,
316
- "verticalHoverLine": false,
317
- "horizontalHoverLine": false,
318
- "lineDatapointSymbol": "none",
319
- "maximumShapeAmount": 7
320
- },
321
- "useLogScale": false,
322
- "filterBehavior": "Filter Change",
323
- "highlightedBarValues": [],
324
- "series": [
325
- {
326
- "dataKey": "value",
327
- "type": "Bar",
328
- "axis": "Left",
329
- "tooltip": true
330
- }
331
- ],
332
- "tooltips": {
333
- "opacity": 90,
334
- "singleSeries": false,
335
- "dateDisplayFormat": ""
336
- },
337
- "forestPlot": {
338
- "startAt": 0,
339
- "colors": {
340
- "line": "",
341
- "shape": ""
342
- },
343
- "lineOfNoEffect": {
344
- "show": true
345
- },
346
- "type": "",
347
- "pooledResult": {
348
- "diamondHeight": 5,
349
- "column": ""
350
- },
351
- "estimateField": "",
352
- "estimateRadius": "",
353
- "shape": "square",
354
- "rowHeight": 20,
355
- "description": {
356
- "show": true,
357
- "text": "description",
358
- "location": 0
359
- },
360
- "result": {
361
- "show": true,
362
- "text": "result",
363
- "location": 100
364
- },
365
- "radius": {
366
- "min": 2,
367
- "max": 10,
368
- "scalingColumn": ""
369
- },
370
- "regression": {
371
- "lower": 0,
372
- "upper": 0,
373
- "estimateField": 0
374
- },
375
- "leftWidthOffset": 0,
376
- "rightWidthOffset": 0,
377
- "showZeroLine": false,
378
- "leftLabel": "",
379
- "rightLabel": ""
380
- },
381
- "area": {
382
- "isStacked": false
383
- },
384
- "sankey": {
385
- "title": {
386
- "defaultColor": "black"
387
- },
388
- "iterations": 1,
389
- "rxValue": 0.9,
390
- "overallSize": {
391
- "width": 900,
392
- "height": 700
393
- },
394
- "margin": {
395
- "margin_y": 25,
396
- "margin_x": 0
397
- },
398
- "nodeSize": {
399
- "nodeWidth": 26,
400
- "nodeHeight": 40
401
- },
402
- "nodePadding": 55,
403
- "nodeFontColor": "black",
404
- "nodeColor": {
405
- "default": "#ff8500",
406
- "inactive": "#808080"
407
- },
408
- "linkColor": {
409
- "default": "#ffc900",
410
- "inactive": "#D3D3D3"
411
- },
412
- "opacity": {
413
- "nodeOpacityDefault": 1,
414
- "nodeOpacityInactive": 0.1,
415
- "LinkOpacityDefault": 1,
416
- "LinkOpacityInactive": 0.1
417
- },
418
- "storyNodeFontColor": "#006778",
419
- "storyNodeText": [],
420
- "nodeValueStyle": {
421
- "textBefore": "(",
422
- "textAfter": ")"
423
- },
424
- "data": []
425
- },
426
- "markupVariables": [],
427
- "enableMarkupVariables": false,
428
- "uid": "chart1",
429
- "visualizationType": "Bar",
430
- "dataKey": "chartData",
431
- "dataDescription": {
432
- "horizontal": false,
433
- "series": false
434
- },
435
- "dashboardFilters": [
436
- {
437
- "columnName": "geography",
438
- "active": "United States",
439
- "values": [
440
- "California",
441
- "Texas",
442
- "United States"
443
- ]
444
- },
445
- {
446
- "columnName": "year",
447
- "active": "2021",
448
- "values": [
449
- "2021",
450
- "2022",
451
- "2023"
452
- ]
453
- }
454
- ],
455
- "dynamicMarginTop": 0
456
- }
457
- },
458
- "table": {
459
- "label": "Data Table",
460
- "show": true,
461
- "showDownloadUrl": false,
462
- "showDownloadLinkBelow": true,
463
- "showVertical": true
464
- },
465
- "type": "dashboard",
466
- "runtime": {},
467
- "version": "4.25.11",
468
- "migrations": {
469
- "addColorMigration": true
470
- },
471
- "general": {
472
- "palette": {
473
- "version": "1.0",
474
- "backups": [
475
- {
476
- "name": "__​undefined__",
477
- "version": "1.0",
478
- "isReversed": "__​undefined__"
479
- },
480
- {
481
- "name": "__​undefined__",
482
- "version": "1.0",
483
- "isReversed": "__​undefined__"
484
- },
485
- {
486
- "name": "__​undefined__",
487
- "version": "1.0",
488
- "isReversed": "__​undefined__"
489
- },
490
- {
491
- "name": "__​undefined__",
492
- "version": "1.0",
493
- "isReversed": "__​undefined__"
494
- }
495
- ]
496
- }
497
- },
498
- "datasets": {
499
- "chartData": {
500
- "dataUrl": "http://localhost:8080/examples/api-dashboard-data.json"
501
- }
502
- }
503
- }