@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
@@ -0,0 +1,1456 @@
1
+ {
2
+ "dashboard": {
3
+ "theme": "theme-blue",
4
+ "titleStyle": "large",
5
+ "sharedFilters": [
6
+ {
7
+ "key": "Year",
8
+ "showDropdown": true,
9
+ "values": [
10
+ "2017",
11
+ "2018",
12
+ "2019",
13
+ "2020"
14
+ ],
15
+ "type": "datafilter",
16
+ "orderedValues": [
17
+ "2017",
18
+ "2018",
19
+ "2019",
20
+ "2020"
21
+ ],
22
+ "columnName": "Year",
23
+ "defaultValue": "",
24
+ "tier": 1,
25
+ "usedBy": [
26
+ "map1770939882221",
27
+ "chart1770939906599",
28
+ "chart1770942062672"
29
+ ]
30
+ },
31
+ {
32
+ "key": "Sex",
33
+ "showDropdown": true,
34
+ "values": [
35
+ "All",
36
+ "Female",
37
+ "Male"
38
+ ],
39
+ "type": "datafilter",
40
+ "orderedValues": [
41
+ "All",
42
+ "Female",
43
+ "Male"
44
+ ],
45
+ "columnName": "Sex",
46
+ "defaultValue": "",
47
+ "tier": 1,
48
+ "usedBy": [
49
+ "map1770939882221"
50
+ ]
51
+ },
52
+ {
53
+ "key": "Age Group",
54
+ "showDropdown": true,
55
+ "values": [
56
+ "<15",
57
+ "15-24",
58
+ "25-34",
59
+ "35-44",
60
+ "45-54",
61
+ "55-64",
62
+ "65+",
63
+ "All"
64
+ ],
65
+ "type": "datafilter",
66
+ "orderedValues": [
67
+ "<15",
68
+ "15-24",
69
+ "25-34",
70
+ "35-44",
71
+ "45-54",
72
+ "55-64",
73
+ "65+",
74
+ "All"
75
+ ],
76
+ "columnName": "Age Group",
77
+ "defaultValue": "",
78
+ "tier": 1,
79
+ "usedBy": [
80
+ "map1770939882221",
81
+ "chart1770942062672"
82
+ ]
83
+ }
84
+ ],
85
+ "title": "4.26.02 <em>Dashboard</em> 1",
86
+ "description": "Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup"
87
+ },
88
+ "rows": [
89
+ {
90
+ "columns": [
91
+ {
92
+ "width": 12,
93
+ "widget": "dashboardFilters1770939768655"
94
+ },
95
+ {},
96
+ {}
97
+ ]
98
+ },
99
+ {
100
+ "columns": [
101
+ {
102
+ "width": 12,
103
+ "widget": "map1770939882221"
104
+ }
105
+ ]
106
+ },
107
+ {
108
+ "columns": [
109
+ {
110
+ "width": 6,
111
+ "widget": "chart1770942062672",
112
+ "toggleName": "Chart"
113
+ },
114
+ {
115
+ "width": 6,
116
+ "widget": "chart1770939906599"
117
+ }
118
+ ]
119
+ }
120
+ ],
121
+ "visualizations": {
122
+ "dashboardFilters1770939768655": {
123
+ "filters": [],
124
+ "filterBehavior": "Filter Change",
125
+ "newViz": true,
126
+ "openModal": true,
127
+ "uid": "dashboardFilters1770939768655",
128
+ "type": "dashboardFilters",
129
+ "sharedFilterIndexes": [
130
+ 0,
131
+ 1,
132
+ 2
133
+ ],
134
+ "visualizationType": "dashboardFilters",
135
+ "showEditorPanel": false,
136
+ "dashboardFilters": [
137
+ {
138
+ "columnName": "Year",
139
+ "active": "2017",
140
+ "values": [
141
+ "2017",
142
+ "2018",
143
+ "2019",
144
+ "2020"
145
+ ]
146
+ },
147
+ {
148
+ "columnName": "Sex",
149
+ "active": "All",
150
+ "values": [
151
+ "All",
152
+ "Female",
153
+ "Male"
154
+ ]
155
+ }
156
+ ]
157
+ },
158
+ "map1770939882221": {
159
+ "annotations": [],
160
+ "general": {
161
+ "navigationTarget": "_self",
162
+ "annotationDropdownText": "Annotations",
163
+ "geoBorderColor": "darkGray",
164
+ "headerColor": "theme-blue",
165
+ "title": "<em>Dash 1</em> Map",
166
+ "showTitle": true,
167
+ "titleStyle": "large",
168
+ "showSidebar": true,
169
+ "showDownloadMediaButton": false,
170
+ "displayAsHex": true,
171
+ "displayStateLabels": true,
172
+ "territoriesAlwaysShow": false,
173
+ "language": "en",
174
+ "geoType": "us",
175
+ "geoLabelOverride": "",
176
+ "hasRegions": false,
177
+ "fullBorder": false,
178
+ "type": "data",
179
+ "convertFipsCodes": true,
180
+ "palette": {
181
+ "isReversed": false,
182
+ "name": "sequential_teal",
183
+ "version": "2.0"
184
+ },
185
+ "allowMapZoom": true,
186
+ "hideGeoColumnInTooltip": false,
187
+ "hidePrimaryColumnInTooltip": false,
188
+ "statesPicked": [],
189
+ "subtext": "Sub: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>\n",
190
+ "introText": "Msg: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>\n",
191
+ "footnotes": "Ftn: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>\n",
192
+ "superTitle": "<sup>Super</sup> Title"
193
+ },
194
+ "type": "map",
195
+ "columns": {
196
+ "geo": {
197
+ "name": "Location",
198
+ "label": "Location",
199
+ "tooltip": false,
200
+ "dataTable": true
201
+ },
202
+ "primary": {
203
+ "dataTable": true,
204
+ "tooltip": true,
205
+ "prefix": "",
206
+ "suffix": "",
207
+ "name": "Cases per 100K",
208
+ "label": "Cases per 100K",
209
+ "roundToPlace": 0
210
+ },
211
+ "navigate": {
212
+ "name": ""
213
+ },
214
+ "latitude": {
215
+ "name": ""
216
+ },
217
+ "longitude": {
218
+ "name": ""
219
+ },
220
+ "additionalColumn1": {
221
+ "label": "Funding Status",
222
+ "dataTable": true,
223
+ "tooltips": false,
224
+ "prefix": "",
225
+ "suffix": "",
226
+ "name": "Funding Status",
227
+ "tooltip": true
228
+ }
229
+ },
230
+ "legend": {
231
+ "descriptions": {},
232
+ "specialClasses": [
233
+ {
234
+ "key": "Funding Status",
235
+ "value": "NA",
236
+ "label": "Not Applicable"
237
+ }
238
+ ],
239
+ "unified": false,
240
+ "singleColumn": true,
241
+ "singleRow": false,
242
+ "verticalSorted": false,
243
+ "showSpecialClassesLast": false,
244
+ "dynamicDescription": false,
245
+ "type": "equalinterval",
246
+ "numberOfItems": 5,
247
+ "position": "side",
248
+ "title": "Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>",
249
+ "style": "circles",
250
+ "subStyle": "linear blocks",
251
+ "tickRotation": "",
252
+ "singleColumnLegend": false,
253
+ "hideBorder": false,
254
+ "groupBy": "",
255
+ "description": "Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>"
256
+ },
257
+ "filters": [],
258
+ "table": {
259
+ "wrapColumns": false,
260
+ "label": "Data Table",
261
+ "expanded": false,
262
+ "limitHeight": false,
263
+ "height": "",
264
+ "caption": "",
265
+ "showDownloadUrl": false,
266
+ "showDataTableLink": true,
267
+ "showDownloadLinkBelow": true,
268
+ "showFullGeoNameInCSV": false,
269
+ "forceDisplay": true,
270
+ "download": false,
271
+ "indexLabel": "",
272
+ "cellMinWidth": "0",
273
+ "collapsible": true,
274
+ "sharedFilterColumns": [
275
+ "Year",
276
+ "Sex",
277
+ "Age Group"
278
+ ]
279
+ },
280
+ "tooltips": {
281
+ "appearanceType": "click",
282
+ "linkLabel": "Learn More",
283
+ "opacity": 90
284
+ },
285
+ "visual": {
286
+ "minBubbleSize": 1,
287
+ "maxBubbleSize": 20,
288
+ "extraBubbleBorder": false,
289
+ "cityStyle": "circle",
290
+ "cityStyleLabel": "",
291
+ "showBubbleZeros": false,
292
+ "additionalCityStyles": [],
293
+ "geoCodeCircleSize": 8
294
+ },
295
+ "mapPosition": {
296
+ "coordinates": [
297
+ 0,
298
+ 30
299
+ ],
300
+ "zoom": 1
301
+ },
302
+ "map": {
303
+ "layers": [],
304
+ "patterns": []
305
+ },
306
+ "hexMap": {
307
+ "type": "",
308
+ "shapeGroups": [
309
+ {
310
+ "legendTitle": "",
311
+ "legendDescription": "",
312
+ "items": [
313
+ {
314
+ "key": "",
315
+ "shape": "Arrow Up",
316
+ "column": "",
317
+ "operator": "=",
318
+ "value": ""
319
+ }
320
+ ]
321
+ }
322
+ ]
323
+ },
324
+ "filterBehavior": "Filter Change",
325
+ "filterIntro": "",
326
+ "smallMultiples": {
327
+ "mode": "",
328
+ "tileColumn": "",
329
+ "tilesPerRowDesktop": 2,
330
+ "tilesPerRowMobile": 1,
331
+ "tileOrderType": "asc",
332
+ "tileOrder": [],
333
+ "tileTitles": {},
334
+ "synchronizedTooltips": true
335
+ },
336
+ "markupVariables": [],
337
+ "enableMarkupVariables": false,
338
+ "openModal": true,
339
+ "uid": "map1770939882221",
340
+ "dataDescription": {
341
+ "horizontal": false,
342
+ "series": false
343
+ },
344
+ "dataKey": "Map Data",
345
+ "showEditorPanel": false,
346
+ "dashboardFilters": [
347
+ {
348
+ "columnName": "Year",
349
+ "active": "2017",
350
+ "values": [
351
+ "2017",
352
+ "2018",
353
+ "2019",
354
+ "2020"
355
+ ]
356
+ },
357
+ {
358
+ "columnName": "Sex",
359
+ "active": "All",
360
+ "values": [
361
+ "All",
362
+ "Female",
363
+ "Male"
364
+ ]
365
+ },
366
+ {
367
+ "columnName": "Age Group",
368
+ "active": "<15",
369
+ "values": [
370
+ "<15",
371
+ "15-24",
372
+ "25-34",
373
+ "35-44",
374
+ "45-54",
375
+ "55-64",
376
+ "65+",
377
+ "All"
378
+ ]
379
+ }
380
+ ]
381
+ },
382
+ "chart1770939906599": {
383
+ "filters": [],
384
+ "filterBehavior": "Filter Change",
385
+ "openModal": true,
386
+ "uid": "chart1770939906599",
387
+ "type": "chart",
388
+ "visualizationType": "Bar",
389
+ "dataDescription": {
390
+ "horizontal": false,
391
+ "series": true,
392
+ "singleRow": false,
393
+ "seriesKey": "Sex",
394
+ "xKey": "Age Group",
395
+ "valueKeysTallSupport": [
396
+ "Total Cases"
397
+ ]
398
+ },
399
+ "dataKey": "Chart Data",
400
+ "showEditorPanel": true,
401
+ "dashboardFilters": [
402
+ {
403
+ "columnName": "Year",
404
+ "active": "2017",
405
+ "values": [
406
+ "2017",
407
+ "2018",
408
+ "2019",
409
+ "2020"
410
+ ]
411
+ },
412
+ {
413
+ "columnName": "Sex",
414
+ "active": "All",
415
+ "values": [
416
+ "All",
417
+ "Female",
418
+ "Male"
419
+ ]
420
+ },
421
+ {
422
+ "columnName": "Age Group",
423
+ "active": "<15",
424
+ "values": [
425
+ "<15",
426
+ "15-24",
427
+ "25-34",
428
+ "35-44",
429
+ "45-54",
430
+ "55-64",
431
+ "65+",
432
+ "All"
433
+ ]
434
+ }
435
+ ],
436
+ "annotations": [],
437
+ "debugSvg": false,
438
+ "chartMessage": {
439
+ "noData": "No Data Available"
440
+ },
441
+ "title": "<em>Dash 1</em> Bar Chart",
442
+ "titleStyle": "large",
443
+ "showTitle": true,
444
+ "showDownloadMediaButton": false,
445
+ "theme": "theme-blue",
446
+ "animate": false,
447
+ "lineDatapointStyle": "hover",
448
+ "lineDatapointColor": "Same as Line",
449
+ "barHasBorder": "false",
450
+ "isLollipopChart": false,
451
+ "lollipopShape": "circle",
452
+ "lollipopColorStyle": "two-tone",
453
+ "visualizationSubType": "stacked",
454
+ "barStyle": "rounded",
455
+ "roundingStyle": "finger",
456
+ "tipRounding": "top",
457
+ "isResponsiveTicks": false,
458
+ "general": {
459
+ "annotationDropdownText": "Annotations",
460
+ "showMissingDataLabel": true,
461
+ "showSuppressedSymbol": true,
462
+ "showZeroValueData": true,
463
+ "hideNullValue": true,
464
+ "palette": {
465
+ "isReversed": true,
466
+ "version": "2.0",
467
+ "name": "sequential_bluereverse"
468
+ },
469
+ "useIntelligentLineChartLabels": false
470
+ },
471
+ "padding": {
472
+ "left": 5,
473
+ "right": 5
474
+ },
475
+ "preliminaryData": [],
476
+ "yAxis": {
477
+ "hideAxis": false,
478
+ "displayNumbersOnBar": true,
479
+ "hideLabel": false,
480
+ "hideTicks": false,
481
+ "size": "75",
482
+ "gridLines": false,
483
+ "enablePadding": false,
484
+ "min": "",
485
+ "max": "",
486
+ "labelColor": "#1c1d1f",
487
+ "tickLabelColor": "#1c1d1f",
488
+ "tickColor": "#1c1d1f",
489
+ "rightHideAxis": false,
490
+ "rightAxisSize": 0,
491
+ "rightLabel": "",
492
+ "rightLabelOffsetSize": 0,
493
+ "rightAxisLabelColor": "#1c1d1f",
494
+ "rightAxisTickLabelColor": "#1c1d1f",
495
+ "rightAxisTickColor": "#1c1d1f",
496
+ "numTicks": "",
497
+ "axisPadding": 0,
498
+ "scalePadding": 10,
499
+ "tickRotation": 0,
500
+ "anchors": [],
501
+ "shoMissingDataLabel": true,
502
+ "showMissingDataLine": true,
503
+ "categories": [],
504
+ "labelPlacement": "Below Bar"
505
+ },
506
+ "boxplot": {
507
+ "plots": [],
508
+ "borders": "true",
509
+ "plotOutlierValues": false,
510
+ "plotNonOutlierValues": true,
511
+ "labels": {
512
+ "q1": "Lower Quartile",
513
+ "q2": "q2",
514
+ "q3": "Upper Quartile",
515
+ "q4": "q4",
516
+ "minimum": "Minimum",
517
+ "maximum": "Maximum",
518
+ "mean": "Mean",
519
+ "median": "Median",
520
+ "sd": "Standard Deviation",
521
+ "iqr": "Interquartile Range",
522
+ "count": "Count",
523
+ "outliers": "Outliers",
524
+ "values": "Values",
525
+ "lowerBounds": "Lower Bounds",
526
+ "upperBounds": "Upper Bounds"
527
+ }
528
+ },
529
+ "topAxis": {
530
+ "hasLine": false
531
+ },
532
+ "isLegendValue": false,
533
+ "barThickness": 0.35,
534
+ "barHeight": 25,
535
+ "barSpace": 15,
536
+ "heights": {
537
+ "vertical": 300,
538
+ "horizontal": 431.19999999999993
539
+ },
540
+ "xAxis": {
541
+ "sortDates": false,
542
+ "anchors": [],
543
+ "type": "categorical",
544
+ "showTargetLabel": true,
545
+ "targetLabel": "Target",
546
+ "hideAxis": false,
547
+ "hideLabel": false,
548
+ "hideTicks": false,
549
+ "size": 75,
550
+ "tickRotation": 0,
551
+ "min": "",
552
+ "max": "",
553
+ "labelColor": "#1c1d1f",
554
+ "tickLabelColor": "#1c1d1f",
555
+ "tickColor": "#1c1d1f",
556
+ "numTicks": "",
557
+ "labelOffset": 0,
558
+ "axisPadding": 200,
559
+ "target": 0,
560
+ "maxTickRotation": 0,
561
+ "padding": 5,
562
+ "showYearsOnce": false,
563
+ "sortByRecentDate": false,
564
+ "brushActive": false,
565
+ "dataKey": "Age Group",
566
+ "axisBBox": 29.860000610351562,
567
+ "tickWidthMax": 39
568
+ },
569
+ "table": {
570
+ "label": "Data Table",
571
+ "expanded": true,
572
+ "limitHeight": false,
573
+ "height": "",
574
+ "caption": "",
575
+ "showDownloadUrl": false,
576
+ "showDataTableLink": true,
577
+ "showDownloadLinkBelow": true,
578
+ "indexLabel": "",
579
+ "download": false,
580
+ "showVertical": true,
581
+ "dateDisplayFormat": "",
582
+ "showMissingDataLabel": true,
583
+ "showSuppressedSymbol": true,
584
+ "collapsible": true,
585
+ "show": false,
586
+ "sharedFilterColumns": [
587
+ "Year"
588
+ ]
589
+ },
590
+ "orientation": "horizontal",
591
+ "columns": {},
592
+ "legend": {
593
+ "hide": false,
594
+ "behavior": "isolate",
595
+ "axisAlign": true,
596
+ "singleRow": true,
597
+ "colorCode": "",
598
+ "reverseLabelOrder": false,
599
+ "description": "<em>Description</em>",
600
+ "dynamicLegend": false,
601
+ "dynamicLegendDefaultText": "Show All",
602
+ "dynamicLegendItemLimit": 5,
603
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
604
+ "dynamicLegendChartMessage": "Select Options from the Legend",
605
+ "label": "Legend",
606
+ "lineMode": false,
607
+ "verticalSorted": false,
608
+ "highlightOnHover": false,
609
+ "hideSuppressedLabels": false,
610
+ "hideSuppressionLink": false,
611
+ "seriesHighlight": [],
612
+ "style": "circles",
613
+ "subStyle": "linear blocks",
614
+ "groupBy": "",
615
+ "shape": "circle",
616
+ "tickRotation": "",
617
+ "order": "dataColumn",
618
+ "hideBorder": {
619
+ "side": false,
620
+ "topBottom": false
621
+ },
622
+ "position": "right",
623
+ "orderedValues": [],
624
+ "patterns": {},
625
+ "patternField": "",
626
+ "unified": true
627
+ },
628
+ "smallMultiples": {
629
+ "mode": "",
630
+ "tileColumn": "",
631
+ "tilesPerRowDesktop": 3,
632
+ "tilesPerRowMobile": 1,
633
+ "tileOrder": [],
634
+ "tileOrderType": "asc",
635
+ "tileTitles": {},
636
+ "independentYAxis": false,
637
+ "colorMode": "same",
638
+ "synchronizedTooltips": true,
639
+ "showAreaUnderLine": true
640
+ },
641
+ "exclusions": {
642
+ "active": false,
643
+ "keys": []
644
+ },
645
+ "twoColor": {
646
+ "palette": "monochrome-1",
647
+ "isPaletteReversed": false
648
+ },
649
+ "labels": false,
650
+ "dataFormat": {
651
+ "commas": false,
652
+ "prefix": "",
653
+ "suffix": "",
654
+ "abbreviated": true,
655
+ "bottomSuffix": "",
656
+ "bottomPrefix": "",
657
+ "bottomAbbreviated": false
658
+ },
659
+ "confidenceKeys": {},
660
+ "visual": {
661
+ "border": true,
662
+ "accent": true,
663
+ "background": true,
664
+ "verticalHoverLine": true,
665
+ "horizontalHoverLine": false,
666
+ "lineDatapointSymbol": "none",
667
+ "maximumShapeAmount": 7
668
+ },
669
+ "useLogScale": false,
670
+ "highlightedBarValues": [],
671
+ "series": [
672
+ {
673
+ "dataKey": "All",
674
+ "type": "Bar",
675
+ "axis": "Left",
676
+ "tooltip": true
677
+ }
678
+ ],
679
+ "tooltips": {
680
+ "opacity": 90,
681
+ "singleSeries": false,
682
+ "dateDisplayFormat": ""
683
+ },
684
+ "forestPlot": {
685
+ "startAt": 0,
686
+ "colors": {
687
+ "line": "",
688
+ "shape": ""
689
+ },
690
+ "lineOfNoEffect": {
691
+ "show": true
692
+ },
693
+ "type": "",
694
+ "pooledResult": {
695
+ "diamondHeight": 5,
696
+ "column": ""
697
+ },
698
+ "estimateField": "",
699
+ "estimateRadius": "",
700
+ "shape": "square",
701
+ "rowHeight": 20,
702
+ "description": {
703
+ "show": true,
704
+ "text": "description",
705
+ "location": 0
706
+ },
707
+ "result": {
708
+ "show": true,
709
+ "text": "result",
710
+ "location": 100
711
+ },
712
+ "radius": {
713
+ "min": 2,
714
+ "max": 10,
715
+ "scalingColumn": ""
716
+ },
717
+ "regression": {
718
+ "lower": 0,
719
+ "upper": 0,
720
+ "estimateField": 0
721
+ },
722
+ "leftWidthOffset": 0,
723
+ "rightWidthOffset": 0,
724
+ "showZeroLine": false,
725
+ "leftLabel": "",
726
+ "rightLabel": ""
727
+ },
728
+ "area": {
729
+ "isStacked": false
730
+ },
731
+ "radar": {
732
+ "gridRings": 5,
733
+ "showGridRings": true,
734
+ "gridRingStyle": "polygons",
735
+ "scaleMin": 0,
736
+ "scaleMax": "",
737
+ "fillOpacity": 0.3,
738
+ "showPoints": true,
739
+ "pointRadius": 4,
740
+ "strokeWidth": 2,
741
+ "axisLabelOffset": 15
742
+ },
743
+ "sankey": {
744
+ "title": {
745
+ "defaultColor": "black"
746
+ },
747
+ "iterations": 1,
748
+ "rxValue": 0.9,
749
+ "overallSize": {
750
+ "width": 900,
751
+ "height": 700
752
+ },
753
+ "margin": {
754
+ "margin_y": 25,
755
+ "margin_x": 0
756
+ },
757
+ "nodeSize": {
758
+ "nodeWidth": 26,
759
+ "nodeHeight": 40
760
+ },
761
+ "nodePadding": 55,
762
+ "nodeFontColor": "black",
763
+ "nodeColor": {
764
+ "default": "#ff8500",
765
+ "inactive": "#808080"
766
+ },
767
+ "linkColor": {
768
+ "default": "#ffc900",
769
+ "inactive": "#D3D3D3"
770
+ },
771
+ "opacity": {
772
+ "nodeOpacityDefault": 1,
773
+ "nodeOpacityInactive": 0.1,
774
+ "LinkOpacityDefault": 1,
775
+ "LinkOpacityInactive": 0.1
776
+ },
777
+ "storyNodeFontColor": "#006778",
778
+ "storyNodeText": [],
779
+ "nodeValueStyle": {
780
+ "textBefore": "(",
781
+ "textAfter": ")"
782
+ },
783
+ "data": []
784
+ },
785
+ "markupVariables": [],
786
+ "enableMarkupVariables": false,
787
+ "introText": "M Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
788
+ "description": "S Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
789
+ "legacyFootnotes": "F Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
790
+ "superTitle": "<sup>Super</sup> Title",
791
+ "dynamicMarginTop": 0,
792
+ "color": "qualitative-bold"
793
+ },
794
+ "chart1770942062672": {
795
+ "filters": [],
796
+ "filterBehavior": "Filter Change",
797
+ "openModal": true,
798
+ "uid": "chart1770942062672",
799
+ "type": "chart",
800
+ "visualizationType": "Pie",
801
+ "dataDescription": {
802
+ "horizontal": false,
803
+ "series": false
804
+ },
805
+ "dataKey": "Chart Data",
806
+ "showEditorPanel": true,
807
+ "dashboardFilters": [
808
+ {
809
+ "columnName": "Year",
810
+ "active": "2017",
811
+ "values": [
812
+ "2017",
813
+ "2018",
814
+ "2019",
815
+ "2020"
816
+ ]
817
+ },
818
+ {
819
+ "columnName": "Sex",
820
+ "active": "All",
821
+ "values": [
822
+ "All",
823
+ "Female",
824
+ "Male"
825
+ ]
826
+ },
827
+ {
828
+ "columnName": "Age Group",
829
+ "active": "<15",
830
+ "values": [
831
+ "<15",
832
+ "15-24",
833
+ "25-34",
834
+ "35-44",
835
+ "45-54",
836
+ "55-64",
837
+ "65+",
838
+ "All"
839
+ ]
840
+ }
841
+ ],
842
+ "annotations": [],
843
+ "debugSvg": false,
844
+ "chartMessage": {
845
+ "noData": "No Data Available"
846
+ },
847
+ "title": "<em>Dash 1</em> Pie Chart",
848
+ "titleStyle": "large",
849
+ "showTitle": true,
850
+ "showDownloadMediaButton": false,
851
+ "theme": "theme-blue",
852
+ "animate": false,
853
+ "lineDatapointStyle": "hover",
854
+ "lineDatapointColor": "Same as Line",
855
+ "barHasBorder": "true",
856
+ "isLollipopChart": false,
857
+ "lollipopShape": "circle",
858
+ "lollipopColorStyle": "two-tone",
859
+ "visualizationSubType": "regular",
860
+ "barStyle": "",
861
+ "roundingStyle": "standard",
862
+ "tipRounding": "top",
863
+ "isResponsiveTicks": false,
864
+ "general": {
865
+ "annotationDropdownText": "Annotations",
866
+ "showMissingDataLabel": true,
867
+ "showSuppressedSymbol": true,
868
+ "showZeroValueData": true,
869
+ "hideNullValue": true,
870
+ "palette": {
871
+ "isReversed": true,
872
+ "version": "2.0",
873
+ "name": "divergent_blue_cyanreverse"
874
+ },
875
+ "useIntelligentLineChartLabels": false
876
+ },
877
+ "padding": {
878
+ "left": 5,
879
+ "right": 5
880
+ },
881
+ "preliminaryData": [],
882
+ "yAxis": {
883
+ "hideAxis": false,
884
+ "displayNumbersOnBar": false,
885
+ "hideLabel": false,
886
+ "hideTicks": false,
887
+ "size": 50,
888
+ "gridLines": false,
889
+ "enablePadding": false,
890
+ "min": "",
891
+ "max": "",
892
+ "labelColor": "#1c1d1f",
893
+ "tickLabelColor": "#1c1d1f",
894
+ "tickColor": "#1c1d1f",
895
+ "rightHideAxis": false,
896
+ "rightAxisSize": 0,
897
+ "rightLabel": "",
898
+ "rightLabelOffsetSize": 0,
899
+ "rightAxisLabelColor": "#1c1d1f",
900
+ "rightAxisTickLabelColor": "#1c1d1f",
901
+ "rightAxisTickColor": "#1c1d1f",
902
+ "numTicks": "",
903
+ "axisPadding": 0,
904
+ "scalePadding": 10,
905
+ "tickRotation": 0,
906
+ "anchors": [],
907
+ "shoMissingDataLabel": true,
908
+ "showMissingDataLine": true,
909
+ "categories": [],
910
+ "dataKey": "Total Cases"
911
+ },
912
+ "boxplot": {
913
+ "plots": [],
914
+ "borders": "true",
915
+ "plotOutlierValues": false,
916
+ "plotNonOutlierValues": true,
917
+ "labels": {
918
+ "q1": "Lower Quartile",
919
+ "q2": "q2",
920
+ "q3": "Upper Quartile",
921
+ "q4": "q4",
922
+ "minimum": "Minimum",
923
+ "maximum": "Maximum",
924
+ "mean": "Mean",
925
+ "median": "Median",
926
+ "sd": "Standard Deviation",
927
+ "iqr": "Interquartile Range",
928
+ "count": "Count",
929
+ "outliers": "Outliers",
930
+ "values": "Values",
931
+ "lowerBounds": "Lower Bounds",
932
+ "upperBounds": "Upper Bounds"
933
+ }
934
+ },
935
+ "topAxis": {
936
+ "hasLine": false
937
+ },
938
+ "isLegendValue": false,
939
+ "barThickness": 0.35,
940
+ "barHeight": 25,
941
+ "barSpace": 15,
942
+ "heights": {
943
+ "vertical": "350",
944
+ "horizontal": 750
945
+ },
946
+ "xAxis": {
947
+ "sortDates": false,
948
+ "anchors": [],
949
+ "type": "categorical",
950
+ "showTargetLabel": true,
951
+ "targetLabel": "Target",
952
+ "hideAxis": false,
953
+ "hideLabel": false,
954
+ "hideTicks": false,
955
+ "size": 75,
956
+ "tickRotation": 0,
957
+ "min": "",
958
+ "max": "",
959
+ "labelColor": "#1c1d1f",
960
+ "tickLabelColor": "#1c1d1f",
961
+ "tickColor": "#1c1d1f",
962
+ "numTicks": "",
963
+ "labelOffset": 0,
964
+ "axisPadding": 200,
965
+ "target": 0,
966
+ "maxTickRotation": 0,
967
+ "padding": 5,
968
+ "showYearsOnce": false,
969
+ "sortByRecentDate": false,
970
+ "brushActive": false,
971
+ "dataKey": "Sex"
972
+ },
973
+ "table": {
974
+ "label": "Data Table",
975
+ "expanded": true,
976
+ "limitHeight": false,
977
+ "height": "",
978
+ "caption": "",
979
+ "showDownloadUrl": false,
980
+ "showDataTableLink": true,
981
+ "showDownloadLinkBelow": true,
982
+ "indexLabel": "",
983
+ "download": false,
984
+ "showVertical": true,
985
+ "dateDisplayFormat": "",
986
+ "showMissingDataLabel": true,
987
+ "showSuppressedSymbol": true,
988
+ "collapsible": true,
989
+ "show": false,
990
+ "sharedFilterColumns": [
991
+ "Year",
992
+ "Age Group"
993
+ ]
994
+ },
995
+ "orientation": "vertical",
996
+ "columns": {},
997
+ "legend": {
998
+ "hide": false,
999
+ "behavior": "isolate",
1000
+ "axisAlign": true,
1001
+ "singleRow": true,
1002
+ "colorCode": "",
1003
+ "reverseLabelOrder": true,
1004
+ "description": "Legend <strong>Description</strong>",
1005
+ "dynamicLegend": false,
1006
+ "dynamicLegendDefaultText": "Show All",
1007
+ "dynamicLegendItemLimit": 5,
1008
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
1009
+ "dynamicLegendChartMessage": "Select Options from the Legend",
1010
+ "label": "Legend <em>Title</em>",
1011
+ "lineMode": false,
1012
+ "verticalSorted": false,
1013
+ "highlightOnHover": false,
1014
+ "hideSuppressedLabels": false,
1015
+ "hideSuppressionLink": false,
1016
+ "seriesHighlight": [],
1017
+ "style": "circles",
1018
+ "subStyle": "linear blocks",
1019
+ "groupBy": "",
1020
+ "shape": "circle",
1021
+ "tickRotation": "",
1022
+ "order": "dataColumn",
1023
+ "hideBorder": {
1024
+ "side": false,
1025
+ "topBottom": false
1026
+ },
1027
+ "position": "bottom",
1028
+ "orderedValues": [],
1029
+ "patterns": {},
1030
+ "patternField": "",
1031
+ "unified": true
1032
+ },
1033
+ "smallMultiples": {
1034
+ "mode": "",
1035
+ "tileColumn": "",
1036
+ "tilesPerRowDesktop": 3,
1037
+ "tilesPerRowMobile": 1,
1038
+ "tileOrder": [],
1039
+ "tileOrderType": "asc",
1040
+ "tileTitles": {},
1041
+ "independentYAxis": false,
1042
+ "colorMode": "same",
1043
+ "synchronizedTooltips": true,
1044
+ "showAreaUnderLine": true
1045
+ },
1046
+ "exclusions": {
1047
+ "active": true,
1048
+ "keys": [
1049
+ "All"
1050
+ ]
1051
+ },
1052
+ "twoColor": {
1053
+ "palette": "monochrome-1",
1054
+ "isPaletteReversed": false
1055
+ },
1056
+ "labels": false,
1057
+ "dataFormat": {
1058
+ "commas": false,
1059
+ "prefix": "",
1060
+ "suffix": "",
1061
+ "abbreviated": false,
1062
+ "bottomSuffix": "",
1063
+ "bottomPrefix": "",
1064
+ "bottomAbbreviated": false
1065
+ },
1066
+ "confidenceKeys": {},
1067
+ "visual": {
1068
+ "border": true,
1069
+ "accent": true,
1070
+ "background": true,
1071
+ "verticalHoverLine": false,
1072
+ "horizontalHoverLine": false,
1073
+ "lineDatapointSymbol": "none",
1074
+ "maximumShapeAmount": 7
1075
+ },
1076
+ "useLogScale": false,
1077
+ "highlightedBarValues": [],
1078
+ "series": [],
1079
+ "tooltips": {
1080
+ "opacity": 90,
1081
+ "singleSeries": false,
1082
+ "dateDisplayFormat": ""
1083
+ },
1084
+ "forestPlot": {
1085
+ "startAt": 0,
1086
+ "colors": {
1087
+ "line": "",
1088
+ "shape": ""
1089
+ },
1090
+ "lineOfNoEffect": {
1091
+ "show": true
1092
+ },
1093
+ "type": "",
1094
+ "pooledResult": {
1095
+ "diamondHeight": 5,
1096
+ "column": ""
1097
+ },
1098
+ "estimateField": "",
1099
+ "estimateRadius": "",
1100
+ "shape": "square",
1101
+ "rowHeight": 20,
1102
+ "description": {
1103
+ "show": true,
1104
+ "text": "description",
1105
+ "location": 0
1106
+ },
1107
+ "result": {
1108
+ "show": true,
1109
+ "text": "result",
1110
+ "location": 100
1111
+ },
1112
+ "radius": {
1113
+ "min": 2,
1114
+ "max": 10,
1115
+ "scalingColumn": ""
1116
+ },
1117
+ "regression": {
1118
+ "lower": 0,
1119
+ "upper": 0,
1120
+ "estimateField": 0
1121
+ },
1122
+ "leftWidthOffset": 0,
1123
+ "rightWidthOffset": 0,
1124
+ "showZeroLine": false,
1125
+ "leftLabel": "",
1126
+ "rightLabel": ""
1127
+ },
1128
+ "area": {
1129
+ "isStacked": false
1130
+ },
1131
+ "radar": {
1132
+ "gridRings": 5,
1133
+ "showGridRings": true,
1134
+ "gridRingStyle": "polygons",
1135
+ "scaleMin": 0,
1136
+ "scaleMax": "",
1137
+ "fillOpacity": 0.3,
1138
+ "showPoints": true,
1139
+ "pointRadius": 4,
1140
+ "strokeWidth": 2,
1141
+ "axisLabelOffset": 15
1142
+ },
1143
+ "sankey": {
1144
+ "title": {
1145
+ "defaultColor": "black"
1146
+ },
1147
+ "iterations": 1,
1148
+ "rxValue": 0.9,
1149
+ "overallSize": {
1150
+ "width": 900,
1151
+ "height": 700
1152
+ },
1153
+ "margin": {
1154
+ "margin_y": 25,
1155
+ "margin_x": 0
1156
+ },
1157
+ "nodeSize": {
1158
+ "nodeWidth": 26,
1159
+ "nodeHeight": 40
1160
+ },
1161
+ "nodePadding": 55,
1162
+ "nodeFontColor": "black",
1163
+ "nodeColor": {
1164
+ "default": "#ff8500",
1165
+ "inactive": "#808080"
1166
+ },
1167
+ "linkColor": {
1168
+ "default": "#ffc900",
1169
+ "inactive": "#D3D3D3"
1170
+ },
1171
+ "opacity": {
1172
+ "nodeOpacityDefault": 1,
1173
+ "nodeOpacityInactive": 0.1,
1174
+ "LinkOpacityDefault": 1,
1175
+ "LinkOpacityInactive": 0.1
1176
+ },
1177
+ "storyNodeFontColor": "#006778",
1178
+ "storyNodeText": [],
1179
+ "nodeValueStyle": {
1180
+ "textBefore": "(",
1181
+ "textAfter": ")"
1182
+ },
1183
+ "data": []
1184
+ },
1185
+ "markupVariables": [],
1186
+ "enableMarkupVariables": false,
1187
+ "superTitle": "<sup>Super</sup> Title",
1188
+ "introText": "Msg: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
1189
+ "description": "S. Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
1190
+ "legacyFootnotes": "F. Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
1191
+ "pieType": "Donut"
1192
+ }
1193
+ },
1194
+ "table": {
1195
+ "label": "Data Table",
1196
+ "show": true,
1197
+ "showDownloadUrl": false,
1198
+ "showDownloadLinkBelow": true,
1199
+ "showVertical": true
1200
+ },
1201
+ "errors": [],
1202
+ "currentViewport": "lg",
1203
+ "id": 15,
1204
+ "category": "General",
1205
+ "label": "Dashboard",
1206
+ "type": "dashboard",
1207
+ "subType": null,
1208
+ "orientation": null,
1209
+ "icon": {
1210
+ "type": {},
1211
+ "key": null,
1212
+ "ref": null,
1213
+ "props": {},
1214
+ "_owner": null
1215
+ },
1216
+ "content": "Present multiple data visualizations with shared filter controls.",
1217
+ "visualizationType": null,
1218
+ "activeVizButtonID": 15,
1219
+ "version": "4.26.2",
1220
+ "migrations": {
1221
+ "addColorMigration": true
1222
+ },
1223
+ "general": {
1224
+ "palette": {
1225
+ "version": "1.0",
1226
+ "backups": [
1227
+ {
1228
+ "version": "1.0"
1229
+ },
1230
+ {
1231
+ "version": "1.0"
1232
+ },
1233
+ {
1234
+ "version": "1.0"
1235
+ },
1236
+ {
1237
+ "version": "1.0"
1238
+ },
1239
+ {
1240
+ "version": "1.0"
1241
+ },
1242
+ {
1243
+ "version": "1.0"
1244
+ },
1245
+ {
1246
+ "version": "1.0"
1247
+ },
1248
+ {
1249
+ "version": "1.0"
1250
+ },
1251
+ {
1252
+ "version": "1.0"
1253
+ },
1254
+ {
1255
+ "version": "1.0"
1256
+ },
1257
+ {
1258
+ "version": "1.0"
1259
+ },
1260
+ {
1261
+ "version": "1.0"
1262
+ },
1263
+ {
1264
+ "version": "1.0"
1265
+ },
1266
+ {
1267
+ "version": "1.0"
1268
+ },
1269
+ {
1270
+ "version": "1.0"
1271
+ }
1272
+ ]
1273
+ }
1274
+ },
1275
+ "uuid": 1770939900943,
1276
+ "datasets": {
1277
+ "Map Data": {
1278
+ "data": [
1279
+ {
1280
+ "Location": "Alabama",
1281
+ "Year": "2017",
1282
+ "Sex": "All",
1283
+ "Age Group": "<15",
1284
+ "Funding Status": "NA",
1285
+ "Cases per 100K": 441.28,
1286
+ "URL": "https://www.cdc.gov/mmwr",
1287
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: <15; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1288
+ },
1289
+ {
1290
+ "Location": "Alabama",
1291
+ "Year": "2017",
1292
+ "Sex": "All",
1293
+ "Age Group": "15-24",
1294
+ "Funding Status": "NA",
1295
+ "Cases per 100K": "1171.52",
1296
+ "URL": "https://www.cdc.gov/flu",
1297
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: 15-24; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1298
+ },
1299
+ {
1300
+ "Location": "Alabama",
1301
+ "Year": "2017",
1302
+ "Sex": "All",
1303
+ "Age Group": "25-34",
1304
+ "Funding Status": "NA",
1305
+ "Cases per 100K": "2315.04",
1306
+ "URL": "http://www.nytimes.com",
1307
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: 25-34; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1308
+ },
1309
+ {
1310
+ "Location": "Alabama",
1311
+ "Year": "2017",
1312
+ "Sex": "All",
1313
+ "Age Group": "35-44",
1314
+ "Funding Status": "NA",
1315
+ "Cases per 100K": "3355.52",
1316
+ "URL": "https://www.cdc.gov/cancer",
1317
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: 35-44; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1318
+ },
1319
+ {
1320
+ "Location": "Alabama",
1321
+ "Year": "2017",
1322
+ "Sex": "All",
1323
+ "Age Group": "45-54",
1324
+ "Funding Status": "NA",
1325
+ "Cases per 100K": "1197.28",
1326
+ "URL": "https://www.cdc.gov/mmwr",
1327
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: 45-54; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1328
+ },
1329
+ {
1330
+ "Location": "Alabama",
1331
+ "Year": "2017",
1332
+ "Sex": "All",
1333
+ "Age Group": "55-64",
1334
+ "Funding Status": "NA",
1335
+ "Cases per 100K": "2819.04",
1336
+ "URL": "https://www.cdc.gov/flu",
1337
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: 55-64; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1338
+ },
1339
+ {
1340
+ "Location": "Alabama",
1341
+ "Year": "2017",
1342
+ "Sex": "All",
1343
+ "Age Group": "65+",
1344
+ "Funding Status": "NA",
1345
+ "Cases per 100K": "2586.08",
1346
+ "URL": "http://www.nytimes.com",
1347
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: 65+; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1348
+ },
1349
+ {
1350
+ "Location": "Alabama",
1351
+ "Year": "2017",
1352
+ "Sex": "All",
1353
+ "Age Group": "All",
1354
+ "Funding Status": "NA",
1355
+ "Cases per 100K": "2768.64",
1356
+ "URL": "https://www.cdc.gov/cancer",
1357
+ "Text": "State: Alabama; Year: 2017; Sex: All; Age Group: All; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1358
+ },
1359
+ {
1360
+ "Location": "Alabama",
1361
+ "Year": "2017",
1362
+ "Sex": "Male",
1363
+ "Age Group": "<15",
1364
+ "Funding Status": "NA",
1365
+ "Cases per 100K": "779.52",
1366
+ "URL": "https://www.cdc.gov/mmwr",
1367
+ "Text": "State: Alabama; Year: 2017; Sex: Male; Age Group: <15; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1368
+ },
1369
+ {
1370
+ "Location": "Alabama",
1371
+ "Year": "2017",
1372
+ "Sex": "Male",
1373
+ "Age Group": "15-24",
1374
+ "Funding Status": "NA",
1375
+ "Cases per 100K": "2319.52",
1376
+ "URL": "https://www.cdc.gov/flu",
1377
+ "Text": "State: Alabama; Year: 2017; Sex: Male; Age Group: 15-24; Lorem ipsum <strong>dolor sit amet</strong>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
1378
+ }
1379
+ ],
1380
+ "dataFileSize": 1975276,
1381
+ "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/01b-map-chart-state-cities-year2017-2020-sex-age-caseRate-funding-lookup-URL-filtertext.csv",
1382
+ "dataFileSourceType": "url",
1383
+ "dataFileFormat": "CSV",
1384
+ "preview": false
1385
+ },
1386
+ "Chart Data": {
1387
+ "data": [
1388
+ {
1389
+ "Year": "2017",
1390
+ "Sex": "Male",
1391
+ "Age Group": "<15",
1392
+ "Total Cases": "1019960"
1393
+ },
1394
+ {
1395
+ "Year": "2017",
1396
+ "Sex": "Male",
1397
+ "Age Group": "15-24",
1398
+ "Total Cases": "700320"
1399
+ },
1400
+ {
1401
+ "Year": "2017",
1402
+ "Sex": "Male",
1403
+ "Age Group": "25-34",
1404
+ "Total Cases": "2393680"
1405
+ },
1406
+ {
1407
+ "Year": "2017",
1408
+ "Sex": "Male",
1409
+ "Age Group": "35-44",
1410
+ "Total Cases": "752920"
1411
+ },
1412
+ {
1413
+ "Year": "2017",
1414
+ "Sex": "Male",
1415
+ "Age Group": "45-54",
1416
+ "Total Cases": "578130"
1417
+ },
1418
+ {
1419
+ "Year": "2017",
1420
+ "Sex": "Male",
1421
+ "Age Group": "55-64",
1422
+ "Total Cases": "326450"
1423
+ },
1424
+ {
1425
+ "Year": "2017",
1426
+ "Sex": "Male",
1427
+ "Age Group": "65+",
1428
+ "Total Cases": "51100"
1429
+ },
1430
+ {
1431
+ "Year": "2017",
1432
+ "Sex": "Female",
1433
+ "Age Group": "<15",
1434
+ "Total Cases": "399980"
1435
+ },
1436
+ {
1437
+ "Year": "2017",
1438
+ "Sex": "Female",
1439
+ "Age Group": "15-24",
1440
+ "Total Cases": "251160"
1441
+ },
1442
+ {
1443
+ "Year": "2017",
1444
+ "Sex": "Female",
1445
+ "Age Group": "25-34",
1446
+ "Total Cases": "238700"
1447
+ }
1448
+ ],
1449
+ "dataFileSize": 2016,
1450
+ "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/39-chart-year2017-2020-sex-age-totalCases.csv",
1451
+ "dataFileSourceType": "url",
1452
+ "dataFileFormat": "CSV",
1453
+ "preview": true
1454
+ }
1455
+ }
1456
+ }