@cdc/dashboard 4.26.4 → 4.26.5
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/CONFIG.md +77 -30
- package/LICENSE +201 -0
- package/dist/cdcdashboard.js +49936 -49166
- package/examples/dashboard-conditions-filters-incomplete.json +221 -0
- package/examples/dashboard-missing-datasets-multi.json +174 -0
- package/examples/dashboard-missing-datasets-single.json +121 -0
- package/examples/dashboard-multi-dashboard-version-regression.json +146 -0
- package/examples/dashboard-shared-filter-row-delete-cleanup.json +186 -0
- package/examples/dashboard-stale-dataset-keys.json +181 -0
- package/examples/dashboard-tiered-filter-regression.json +190 -0
- package/examples/private/cfa-dashboard.json +651 -0
- package/examples/private/data-bite-wrap.json +6936 -0
- package/examples/private/multi-dash-fix.json +16963 -0
- package/examples/private/versions.json +41612 -0
- package/examples/us-map-filter-example.json +1074 -0
- package/package.json +9 -9
- package/src/CdcDashboard.tsx +6 -2
- package/src/CdcDashboardComponent.tsx +178 -87
- package/src/DashboardCopyPasteContext.test.tsx +33 -0
- package/src/DashboardCopyPasteContext.tsx +48 -0
- package/src/_stories/Dashboard.EditorRegression.stories.tsx +72 -0
- package/src/_stories/Dashboard.Regression.stories.tsx +196 -0
- package/src/_stories/Dashboard.Zoom.stories.tsx +88 -0
- package/src/_stories/Dashboard.stories.tsx +294 -0
- package/src/_stories/FilteredTextMigrationComparison.stories.tsx +87 -0
- package/src/components/Column.test.tsx +176 -0
- package/src/components/Column.tsx +214 -13
- package/src/components/DashboardConditionModal.test.tsx +420 -0
- package/src/components/DashboardConditionModal.tsx +367 -0
- package/src/components/DashboardConditionSummary.tsx +59 -0
- package/src/components/DashboardEditors.tsx +8 -0
- package/src/components/DashboardFilters/DashboardFilters.test.tsx +139 -1
- package/src/components/DashboardFilters/DashboardFilters.tsx +192 -174
- package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.test.tsx +164 -0
- package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +41 -2
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.test.tsx +180 -3
- package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +15 -32
- package/src/components/DashboardFilters/DashboardFiltersWrapper.test.tsx +142 -0
- package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +32 -27
- package/src/components/DashboardFilters/dashboardfilter.styles.css +42 -27
- package/src/components/DataDesignerModal.tsx +2 -1
- package/src/components/Grid.tsx +8 -4
- package/src/components/Header/Header.tsx +36 -17
- package/src/components/Row.test.tsx +228 -0
- package/src/components/Row.tsx +93 -18
- package/src/components/VisualizationRow.test.tsx +396 -0
- package/src/components/VisualizationRow.tsx +110 -35
- package/src/components/VisualizationsPanel/VisualizationsPanel.test.tsx +49 -0
- package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +14 -13
- package/src/components/Widget/Widget.test.tsx +218 -0
- package/src/components/Widget/Widget.tsx +119 -17
- package/src/components/Widget/widget.styles.css +31 -18
- package/src/components/dashboard-condition-modal.css +76 -0
- package/src/components/dashboard-condition-summary.css +87 -0
- package/src/helpers/addValuesToDashboardFilters.ts +3 -5
- package/src/helpers/addVisualization.ts +15 -4
- package/src/helpers/cloneDashboardWidget.ts +127 -0
- package/src/helpers/dashboardColumnWidgets.ts +99 -0
- package/src/helpers/dashboardConditionUi.ts +47 -0
- package/src/helpers/dashboardConditions.ts +200 -0
- package/src/helpers/dashboardFilterTargets.ts +156 -0
- package/src/helpers/filterData.ts +4 -9
- package/src/helpers/filterVisibility.ts +20 -0
- package/src/helpers/formatConfigBeforeSave.ts +2 -2
- package/src/helpers/getFilteredData.ts +18 -5
- package/src/helpers/getUpdateConfig.ts +43 -12
- package/src/helpers/getVizRowColumnLocator.ts +11 -1
- package/src/helpers/iconHash.tsx +9 -3
- package/src/helpers/mapDataToConfig.ts +31 -29
- package/src/helpers/reloadURLHelpers.ts +25 -5
- package/src/helpers/removeDashboardFilter.ts +33 -33
- package/src/helpers/tests/addVisualization.test.ts +53 -9
- package/src/helpers/tests/cloneDashboardWidget.test.ts +136 -0
- package/src/helpers/tests/dashboardColumnWidgets.test.ts +99 -0
- package/src/helpers/tests/dashboardConditionUi.test.ts +41 -0
- package/src/helpers/tests/dashboardConditions.test.ts +428 -0
- package/src/helpers/tests/formatConfigBeforeSave.test.ts +51 -0
- package/src/helpers/tests/getFilteredData.test.ts +265 -86
- package/src/helpers/tests/getUpdateConfig.test.ts +338 -0
- package/src/helpers/tests/reloadURLHelpers.test.ts +394 -238
- package/src/index.tsx +6 -3
- package/src/scss/grid.scss +249 -20
- package/src/scss/main.scss +108 -29
- package/src/store/dashboard.actions.ts +17 -4
- package/src/store/dashboard.reducer.test.ts +538 -0
- package/src/store/dashboard.reducer.ts +135 -22
- package/src/test/CdcDashboard.test.tsx +148 -0
- package/src/test/CdcDashboardComponent.test.tsx +935 -2
- package/src/types/ConfigRow.ts +15 -0
- package/src/types/DashboardFilters.ts +4 -0
- package/src/types/SharedFilter.ts +1 -0
|
@@ -0,0 +1,651 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dashboard": {
|
|
3
|
+
"theme": "theme-blue",
|
|
4
|
+
"sharedFilters": [],
|
|
5
|
+
"titleStyle": "small"
|
|
6
|
+
},
|
|
7
|
+
"rows": [
|
|
8
|
+
{
|
|
9
|
+
"columns": [
|
|
10
|
+
{
|
|
11
|
+
"width": 12,
|
|
12
|
+
"toggleName": "View HSA Map",
|
|
13
|
+
"widget": "map1749061009678"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"width": 12,
|
|
17
|
+
"widget": "map1749061008090",
|
|
18
|
+
"toggleName": "View State Map"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"width": 12
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"toggle": true
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"visualizations": {
|
|
28
|
+
"map1749061008090": {
|
|
29
|
+
"annotations": [],
|
|
30
|
+
"general": {
|
|
31
|
+
"navigationTarget": "_self",
|
|
32
|
+
"annotationDropdownText": "Annotations",
|
|
33
|
+
"geoBorderColor": "darkGray",
|
|
34
|
+
"headerColor": "theme-blue",
|
|
35
|
+
"title": "covid",
|
|
36
|
+
"showTitle": false,
|
|
37
|
+
"titleStyle": "legacy",
|
|
38
|
+
"showSidebar": "hidden",
|
|
39
|
+
"showDownloadMediaButton": false,
|
|
40
|
+
"displayAsHex": false,
|
|
41
|
+
"displayStateLabels": false,
|
|
42
|
+
"territoriesAlwaysShow": false,
|
|
43
|
+
"language": "en",
|
|
44
|
+
"geoType": "us",
|
|
45
|
+
"geoLabelOverride": "",
|
|
46
|
+
"hasRegions": false,
|
|
47
|
+
"fullBorder": false,
|
|
48
|
+
"type": "data",
|
|
49
|
+
"convertFipsCodes": true,
|
|
50
|
+
"palette": {
|
|
51
|
+
"isReversed": false,
|
|
52
|
+
"name": "qualitative1",
|
|
53
|
+
"version": "1.0",
|
|
54
|
+
"customColors": [
|
|
55
|
+
"#6d085a",
|
|
56
|
+
"#b83d93",
|
|
57
|
+
"#ffffff",
|
|
58
|
+
"#3bbbb0",
|
|
59
|
+
"#006166",
|
|
60
|
+
"#939393",
|
|
61
|
+
"#333333"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"allowMapZoom": true,
|
|
65
|
+
"hideGeoColumnInTooltip": true,
|
|
66
|
+
"hidePrimaryColumnInTooltip": false,
|
|
67
|
+
"hideUnselectedStates": true,
|
|
68
|
+
"statesPicked": [],
|
|
69
|
+
"equalNumberOptIn": false,
|
|
70
|
+
"expandDataTable": false
|
|
71
|
+
},
|
|
72
|
+
"type": "map",
|
|
73
|
+
"columns": {
|
|
74
|
+
"geo": {
|
|
75
|
+
"name": "state",
|
|
76
|
+
"label": "Location",
|
|
77
|
+
"tooltip": false,
|
|
78
|
+
"dataTable": true,
|
|
79
|
+
"displayColumn": ""
|
|
80
|
+
},
|
|
81
|
+
"primary": {
|
|
82
|
+
"dataTable": true,
|
|
83
|
+
"tooltip": false,
|
|
84
|
+
"prefix": "",
|
|
85
|
+
"suffix": "",
|
|
86
|
+
"name": "category",
|
|
87
|
+
"label": "Epidemic Trend Category",
|
|
88
|
+
"roundToPlace": 0
|
|
89
|
+
},
|
|
90
|
+
"navigate": {
|
|
91
|
+
"name": "Select Option"
|
|
92
|
+
},
|
|
93
|
+
"latitude": {
|
|
94
|
+
"name": ""
|
|
95
|
+
},
|
|
96
|
+
"longitude": {
|
|
97
|
+
"name": ""
|
|
98
|
+
},
|
|
99
|
+
"additionalColumn1": {
|
|
100
|
+
"label": "Probability Epidemic is Growing (%)",
|
|
101
|
+
"dataTable": true,
|
|
102
|
+
"tooltips": false,
|
|
103
|
+
"prefix": "",
|
|
104
|
+
"suffix": "",
|
|
105
|
+
"name": "p_growing",
|
|
106
|
+
"tooltip": false
|
|
107
|
+
},
|
|
108
|
+
"additionalColumn2": {
|
|
109
|
+
"label": "Date",
|
|
110
|
+
"dataTable": true,
|
|
111
|
+
"tooltips": false,
|
|
112
|
+
"prefix": "",
|
|
113
|
+
"suffix": "",
|
|
114
|
+
"name": "report_date"
|
|
115
|
+
},
|
|
116
|
+
"additionalColumn3": {
|
|
117
|
+
"label": "Epidemic Status",
|
|
118
|
+
"dataTable": false,
|
|
119
|
+
"tooltips": false,
|
|
120
|
+
"prefix": "",
|
|
121
|
+
"suffix": "",
|
|
122
|
+
"name": "category",
|
|
123
|
+
"tooltip": true
|
|
124
|
+
},
|
|
125
|
+
"additionalColumn4": {
|
|
126
|
+
"label": "Percent Visits",
|
|
127
|
+
"dataTable": false,
|
|
128
|
+
"tooltips": false,
|
|
129
|
+
"prefix": "",
|
|
130
|
+
"suffix": "",
|
|
131
|
+
"name": "percent_visits",
|
|
132
|
+
"tooltip": false
|
|
133
|
+
},
|
|
134
|
+
"additionalColumn5": {
|
|
135
|
+
"label": "Threshold Classification",
|
|
136
|
+
"dataTable": false,
|
|
137
|
+
"tooltips": false,
|
|
138
|
+
"prefix": "",
|
|
139
|
+
"suffix": "",
|
|
140
|
+
"name": "threshold_classification",
|
|
141
|
+
"tooltip": true
|
|
142
|
+
},
|
|
143
|
+
"additionalColumn6": {
|
|
144
|
+
"label": "Median",
|
|
145
|
+
"dataTable": false,
|
|
146
|
+
"tooltips": false,
|
|
147
|
+
"prefix": "",
|
|
148
|
+
"suffix": "",
|
|
149
|
+
"name": "median",
|
|
150
|
+
"tooltip": true
|
|
151
|
+
},
|
|
152
|
+
"additionalColumn7": {
|
|
153
|
+
"label": "Lower",
|
|
154
|
+
"dataTable": false,
|
|
155
|
+
"tooltips": false,
|
|
156
|
+
"prefix": "",
|
|
157
|
+
"suffix": "",
|
|
158
|
+
"name": "lower",
|
|
159
|
+
"tooltip": true
|
|
160
|
+
},
|
|
161
|
+
"additionalColumn8": {
|
|
162
|
+
"label": "Upper",
|
|
163
|
+
"dataTable": false,
|
|
164
|
+
"tooltips": false,
|
|
165
|
+
"prefix": "",
|
|
166
|
+
"suffix": "",
|
|
167
|
+
"name": "upper",
|
|
168
|
+
"tooltip": true
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"legend": {
|
|
172
|
+
"descriptions": {},
|
|
173
|
+
"specialClasses": [],
|
|
174
|
+
"unified": false,
|
|
175
|
+
"singleColumn": true,
|
|
176
|
+
"singleRow": false,
|
|
177
|
+
"verticalSorted": false,
|
|
178
|
+
"showSpecialClassesLast": false,
|
|
179
|
+
"dynamicDescription": false,
|
|
180
|
+
"type": "category",
|
|
181
|
+
"numberOfItems": 6,
|
|
182
|
+
"position": "side",
|
|
183
|
+
"title": "Epidemic Trends",
|
|
184
|
+
"style": "circles",
|
|
185
|
+
"subStyle": "linear blocks",
|
|
186
|
+
"tickRotation": "",
|
|
187
|
+
"singleColumnLegend": false,
|
|
188
|
+
"hideBorder": false,
|
|
189
|
+
"groupBy": "",
|
|
190
|
+
"categoryValuesOrder": [
|
|
191
|
+
"Growing",
|
|
192
|
+
"Likely Growing",
|
|
193
|
+
"Not Changing",
|
|
194
|
+
"Likely Declining",
|
|
195
|
+
"Declining",
|
|
196
|
+
"Not Estimated",
|
|
197
|
+
"Data Unavailable"
|
|
198
|
+
],
|
|
199
|
+
"additionalCategories": [
|
|
200
|
+
"Growing",
|
|
201
|
+
"Likely Growing",
|
|
202
|
+
"Not Changing",
|
|
203
|
+
"Likely Declining",
|
|
204
|
+
"Declining",
|
|
205
|
+
"Not Estimated",
|
|
206
|
+
"Data Unavailable"
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
"filters": [],
|
|
210
|
+
"table": {
|
|
211
|
+
"wrapColumns": false,
|
|
212
|
+
"label": "Data Table",
|
|
213
|
+
"expanded": false,
|
|
214
|
+
"limitHeight": true,
|
|
215
|
+
"height": "600",
|
|
216
|
+
"caption": "",
|
|
217
|
+
"showDownloadUrl": false,
|
|
218
|
+
"downloadUrlLabel": "",
|
|
219
|
+
"showDataTableLink": false,
|
|
220
|
+
"showDownloadLinkBelow": true,
|
|
221
|
+
"showFullGeoNameInCSV": false,
|
|
222
|
+
"forceDisplay": true,
|
|
223
|
+
"download": true,
|
|
224
|
+
"indexLabel": "",
|
|
225
|
+
"cellMinWidth": "0",
|
|
226
|
+
"collapsible": true
|
|
227
|
+
},
|
|
228
|
+
"tooltips": {
|
|
229
|
+
"appearanceType": "hover",
|
|
230
|
+
"linkLabel": "Learn More",
|
|
231
|
+
"opacity": 90,
|
|
232
|
+
"capitalizeLabels": true
|
|
233
|
+
},
|
|
234
|
+
"visual": {
|
|
235
|
+
"border": false,
|
|
236
|
+
"borderColorTheme": false,
|
|
237
|
+
"accent": false,
|
|
238
|
+
"background": false,
|
|
239
|
+
"hideBackgroundColor": false,
|
|
240
|
+
"tp5Treatment": false,
|
|
241
|
+
"tp5Background": false,
|
|
242
|
+
"minBubbleSize": 1,
|
|
243
|
+
"maxBubbleSize": 20,
|
|
244
|
+
"extraBubbleBorder": false,
|
|
245
|
+
"cityStyle": "circle",
|
|
246
|
+
"cityStyleLabel": "",
|
|
247
|
+
"showBubbleZeros": false,
|
|
248
|
+
"additionalCityStyles": [],
|
|
249
|
+
"geoCodeCircleSize": 2
|
|
250
|
+
},
|
|
251
|
+
"mapPosition": {
|
|
252
|
+
"coordinates": [
|
|
253
|
+
0,
|
|
254
|
+
30
|
|
255
|
+
],
|
|
256
|
+
"zoom": 1
|
|
257
|
+
},
|
|
258
|
+
"map": {
|
|
259
|
+
"layers": [],
|
|
260
|
+
"patterns": []
|
|
261
|
+
},
|
|
262
|
+
"hexMap": {
|
|
263
|
+
"type": "",
|
|
264
|
+
"shapeGroups": [
|
|
265
|
+
{
|
|
266
|
+
"legendTitle": "",
|
|
267
|
+
"legendDescription": "",
|
|
268
|
+
"items": [
|
|
269
|
+
{
|
|
270
|
+
"key": "",
|
|
271
|
+
"shape": "Arrow up",
|
|
272
|
+
"column": "",
|
|
273
|
+
"operator": "=",
|
|
274
|
+
"value": ""
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
}
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
"filterBehavior": "Filter Change",
|
|
281
|
+
"filterIntro": "",
|
|
282
|
+
"smallMultiples": {
|
|
283
|
+
"mode": "",
|
|
284
|
+
"tileColumn": "",
|
|
285
|
+
"tilesPerRowDesktop": 2,
|
|
286
|
+
"tilesPerRowMobile": 1,
|
|
287
|
+
"tileOrderType": "asc",
|
|
288
|
+
"tileOrder": [],
|
|
289
|
+
"tileTitles": {},
|
|
290
|
+
"synchronizedTooltips": true
|
|
291
|
+
},
|
|
292
|
+
"markupVariables": [],
|
|
293
|
+
"enableMarkupVariables": false,
|
|
294
|
+
"dataKey": "rt_estimates_map",
|
|
295
|
+
"dataDescription": {
|
|
296
|
+
"horizontal": false,
|
|
297
|
+
"series": false
|
|
298
|
+
},
|
|
299
|
+
"validated": "4.24.3",
|
|
300
|
+
"visualizationType": "us",
|
|
301
|
+
"version": "4.25.1",
|
|
302
|
+
"migrations": {
|
|
303
|
+
"addColorMigration": true
|
|
304
|
+
},
|
|
305
|
+
"uid": "map1749061008090",
|
|
306
|
+
"showEditorPanel": true,
|
|
307
|
+
"locale": "en-US",
|
|
308
|
+
"dataMetadata": {}
|
|
309
|
+
},
|
|
310
|
+
"map1749061009678": {
|
|
311
|
+
"annotations": [],
|
|
312
|
+
"general": {
|
|
313
|
+
"navigationTarget": "_self",
|
|
314
|
+
"noDataMessage": "No State Selected",
|
|
315
|
+
"annotationDropdownText": "Annotations",
|
|
316
|
+
"geoBorderColor": "darkGray",
|
|
317
|
+
"headerColor": "theme-blue",
|
|
318
|
+
"title": "",
|
|
319
|
+
"showTitle": true,
|
|
320
|
+
"titleStyle": "small",
|
|
321
|
+
"showSidebar": "hidden",
|
|
322
|
+
"showDownloadMediaButton": false,
|
|
323
|
+
"displayAsHex": false,
|
|
324
|
+
"displayStateLabels": true,
|
|
325
|
+
"territoriesAlwaysShow": false,
|
|
326
|
+
"language": "en",
|
|
327
|
+
"geoType": "us-county",
|
|
328
|
+
"geoLabelOverride": "",
|
|
329
|
+
"hasRegions": false,
|
|
330
|
+
"fullBorder": false,
|
|
331
|
+
"type": "data",
|
|
332
|
+
"convertFipsCodes": true,
|
|
333
|
+
"palette": {
|
|
334
|
+
"isReversed": false,
|
|
335
|
+
"name": "qualitative1",
|
|
336
|
+
"version": "1.0",
|
|
337
|
+
"customColors": [
|
|
338
|
+
"#6d085a",
|
|
339
|
+
"#b83d93",
|
|
340
|
+
"#ffffff",
|
|
341
|
+
"#3bbbb0",
|
|
342
|
+
"#006166",
|
|
343
|
+
"#939393",
|
|
344
|
+
"#333333"
|
|
345
|
+
]
|
|
346
|
+
},
|
|
347
|
+
"allowMapZoom": true,
|
|
348
|
+
"hideGeoColumnInTooltip": false,
|
|
349
|
+
"hidePrimaryColumnInTooltip": false,
|
|
350
|
+
"hideUnselectedStates": true,
|
|
351
|
+
"statesPicked": [],
|
|
352
|
+
"expandDataTable": false,
|
|
353
|
+
"showHSABoundaries": true,
|
|
354
|
+
"showNeighboringStates": true,
|
|
355
|
+
"showStateDropdown": false
|
|
356
|
+
},
|
|
357
|
+
"type": "map",
|
|
358
|
+
"columns": {
|
|
359
|
+
"geo": {
|
|
360
|
+
"name": "county_fips",
|
|
361
|
+
"label": "Location",
|
|
362
|
+
"tooltip": false,
|
|
363
|
+
"dataTable": true,
|
|
364
|
+
"displayColumn": "county_name"
|
|
365
|
+
},
|
|
366
|
+
"primary": {
|
|
367
|
+
"dataTable": false,
|
|
368
|
+
"tooltip": false,
|
|
369
|
+
"prefix": "",
|
|
370
|
+
"suffix": "",
|
|
371
|
+
"name": "category",
|
|
372
|
+
"label": "Epidemic Trend",
|
|
373
|
+
"roundToPlace": 0
|
|
374
|
+
},
|
|
375
|
+
"navigate": {
|
|
376
|
+
"name": ""
|
|
377
|
+
},
|
|
378
|
+
"latitude": {
|
|
379
|
+
"name": ""
|
|
380
|
+
},
|
|
381
|
+
"longitude": {
|
|
382
|
+
"name": ""
|
|
383
|
+
},
|
|
384
|
+
"hsa": {
|
|
385
|
+
"name": "hsa_description"
|
|
386
|
+
},
|
|
387
|
+
"additionalColumn2": {
|
|
388
|
+
"label": "Epidemic Trend Category",
|
|
389
|
+
"dataTable": true,
|
|
390
|
+
"tooltips": false,
|
|
391
|
+
"prefix": "",
|
|
392
|
+
"suffix": "",
|
|
393
|
+
"name": "category"
|
|
394
|
+
},
|
|
395
|
+
"additionalColumn3": {
|
|
396
|
+
"label": "Probability Epidemic is Growing (%)",
|
|
397
|
+
"dataTable": true,
|
|
398
|
+
"tooltips": false,
|
|
399
|
+
"prefix": "",
|
|
400
|
+
"suffix": "",
|
|
401
|
+
"name": "p_growing"
|
|
402
|
+
},
|
|
403
|
+
"additionalColumn4": {
|
|
404
|
+
"label": "Date",
|
|
405
|
+
"dataTable": true,
|
|
406
|
+
"tooltips": false,
|
|
407
|
+
"prefix": "",
|
|
408
|
+
"suffix": "",
|
|
409
|
+
"name": "report_date"
|
|
410
|
+
},
|
|
411
|
+
"additionalColumn5": {
|
|
412
|
+
"label": "Epidemic Trend",
|
|
413
|
+
"dataTable": false,
|
|
414
|
+
"tooltips": false,
|
|
415
|
+
"prefix": "",
|
|
416
|
+
"suffix": "",
|
|
417
|
+
"name": "category_tooltip",
|
|
418
|
+
"tooltip": true
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"legend": {
|
|
422
|
+
"descriptions": {},
|
|
423
|
+
"specialClasses": [],
|
|
424
|
+
"unified": false,
|
|
425
|
+
"singleColumn": true,
|
|
426
|
+
"singleRow": false,
|
|
427
|
+
"verticalSorted": false,
|
|
428
|
+
"showSpecialClassesLast": false,
|
|
429
|
+
"dynamicDescription": false,
|
|
430
|
+
"type": "category",
|
|
431
|
+
"numberOfItems": 3,
|
|
432
|
+
"position": "side",
|
|
433
|
+
"title": "Epidemic Trends",
|
|
434
|
+
"style": "circles",
|
|
435
|
+
"subStyle": "linear blocks",
|
|
436
|
+
"tickRotation": "",
|
|
437
|
+
"singleColumnLegend": false,
|
|
438
|
+
"hideBorder": false,
|
|
439
|
+
"groupBy": "",
|
|
440
|
+
"categoryValuesOrder": [
|
|
441
|
+
"Growing",
|
|
442
|
+
"Likely Growing",
|
|
443
|
+
"Not Changing",
|
|
444
|
+
"Likely Declining",
|
|
445
|
+
"Declining",
|
|
446
|
+
"Not Estimated"
|
|
447
|
+
],
|
|
448
|
+
"additionalCategories": [
|
|
449
|
+
"Growing",
|
|
450
|
+
"Likely Growing",
|
|
451
|
+
"Not Changing",
|
|
452
|
+
"Likely Declining",
|
|
453
|
+
"Declining",
|
|
454
|
+
"Not Estimated"
|
|
455
|
+
]
|
|
456
|
+
},
|
|
457
|
+
"filters": [],
|
|
458
|
+
"table": {
|
|
459
|
+
"wrapColumns": false,
|
|
460
|
+
"label": "Data Table",
|
|
461
|
+
"expanded": false,
|
|
462
|
+
"limitHeight": true,
|
|
463
|
+
"height": "650",
|
|
464
|
+
"caption": "",
|
|
465
|
+
"showDownloadUrl": false,
|
|
466
|
+
"downloadUrlLabel": "",
|
|
467
|
+
"showDataTableLink": false,
|
|
468
|
+
"showDownloadLinkBelow": true,
|
|
469
|
+
"showFullGeoNameInCSV": true,
|
|
470
|
+
"forceDisplay": true,
|
|
471
|
+
"download": true,
|
|
472
|
+
"indexLabel": "",
|
|
473
|
+
"cellMinWidth": "0",
|
|
474
|
+
"collapsible": true,
|
|
475
|
+
"sharedFilterColumns": [
|
|
476
|
+
"State"
|
|
477
|
+
],
|
|
478
|
+
"showNonGeoData": true
|
|
479
|
+
},
|
|
480
|
+
"tooltips": {
|
|
481
|
+
"appearanceType": "hover",
|
|
482
|
+
"linkLabel": "Learn More",
|
|
483
|
+
"opacity": 90,
|
|
484
|
+
"capitalizeLabels": true
|
|
485
|
+
},
|
|
486
|
+
"visual": {
|
|
487
|
+
"border": false,
|
|
488
|
+
"borderColorTheme": false,
|
|
489
|
+
"accent": false,
|
|
490
|
+
"background": false,
|
|
491
|
+
"hideBackgroundColor": false,
|
|
492
|
+
"tp5Treatment": false,
|
|
493
|
+
"tp5Background": false,
|
|
494
|
+
"minBubbleSize": 1,
|
|
495
|
+
"maxBubbleSize": 20,
|
|
496
|
+
"extraBubbleBorder": false,
|
|
497
|
+
"cityStyle": "circle",
|
|
498
|
+
"cityStyleLabel": "",
|
|
499
|
+
"showBubbleZeros": false,
|
|
500
|
+
"additionalCityStyles": [],
|
|
501
|
+
"geoCodeCircleSize": 8
|
|
502
|
+
},
|
|
503
|
+
"mapPosition": {
|
|
504
|
+
"coordinates": [
|
|
505
|
+
0,
|
|
506
|
+
30
|
|
507
|
+
],
|
|
508
|
+
"zoom": 1
|
|
509
|
+
},
|
|
510
|
+
"map": {
|
|
511
|
+
"layers": [],
|
|
512
|
+
"patterns": []
|
|
513
|
+
},
|
|
514
|
+
"hexMap": {
|
|
515
|
+
"type": "",
|
|
516
|
+
"shapeGroups": [
|
|
517
|
+
{
|
|
518
|
+
"legendTitle": "",
|
|
519
|
+
"legendDescription": "",
|
|
520
|
+
"items": [
|
|
521
|
+
{
|
|
522
|
+
"key": "",
|
|
523
|
+
"shape": "Arrow Up",
|
|
524
|
+
"column": "",
|
|
525
|
+
"operator": "=",
|
|
526
|
+
"value": ""
|
|
527
|
+
}
|
|
528
|
+
]
|
|
529
|
+
}
|
|
530
|
+
]
|
|
531
|
+
},
|
|
532
|
+
"filterBehavior": "Filter Change",
|
|
533
|
+
"filterIntro": "",
|
|
534
|
+
"smallMultiples": {
|
|
535
|
+
"mode": "",
|
|
536
|
+
"tileColumn": "",
|
|
537
|
+
"tilesPerRowDesktop": 2,
|
|
538
|
+
"tilesPerRowMobile": 1,
|
|
539
|
+
"tileOrderType": "asc",
|
|
540
|
+
"tileOrder": [],
|
|
541
|
+
"tileTitles": {},
|
|
542
|
+
"synchronizedTooltips": true
|
|
543
|
+
},
|
|
544
|
+
"markupVariables": [],
|
|
545
|
+
"enableMarkupVariables": false,
|
|
546
|
+
"openModal": true,
|
|
547
|
+
"uid": "map1749061009678",
|
|
548
|
+
"dataDescription": {
|
|
549
|
+
"horizontal": false,
|
|
550
|
+
"series": false
|
|
551
|
+
},
|
|
552
|
+
"dataKey": "rt_substate_map",
|
|
553
|
+
"showEditorPanel": true,
|
|
554
|
+
"locale": "en-US",
|
|
555
|
+
"dataMetadata": {},
|
|
556
|
+
"migrations": {
|
|
557
|
+
"showPuertoRico": true
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"table": {
|
|
562
|
+
"label": "Data Table",
|
|
563
|
+
"show": false,
|
|
564
|
+
"showDownloadUrl": false,
|
|
565
|
+
"showVertical": true
|
|
566
|
+
},
|
|
567
|
+
"id": 15,
|
|
568
|
+
"category": "General",
|
|
569
|
+
"type": "dashboard",
|
|
570
|
+
"subType": null,
|
|
571
|
+
"orientation": null,
|
|
572
|
+
"content": "Present multiple data visualizations with shared filter controls.",
|
|
573
|
+
"visualizationType": null,
|
|
574
|
+
"activeVizButtonID": 15,
|
|
575
|
+
"version": "4.26.4-1",
|
|
576
|
+
"migrations": {
|
|
577
|
+
"addColorMigration": true
|
|
578
|
+
},
|
|
579
|
+
"uuid": 1776960009230,
|
|
580
|
+
"label": "COVID-19",
|
|
581
|
+
"general": {
|
|
582
|
+
"palette": {
|
|
583
|
+
"version": "1.0",
|
|
584
|
+
"backups": [
|
|
585
|
+
{
|
|
586
|
+
"version": "1.0"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"version": "1.0"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"version": "1.0"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"version": "1.0"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"version": "1.0"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"version": "1.0"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"version": "1.0"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"version": "1.0"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"version": "1.0"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"version": "1.0"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"version": "1.0"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"version": "1.0"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"version": "1.0"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"version": "1.0"
|
|
626
|
+
}
|
|
627
|
+
]
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"locale": "en-US",
|
|
631
|
+
"datasets": {
|
|
632
|
+
"rt_substate_map": {
|
|
633
|
+
"dataMetadata": {},
|
|
634
|
+
"dataFileSize": 662465,
|
|
635
|
+
"dataFileName": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&$select=county_fips,county_name,hsa_description,category,p_growing,report_date,category_tooltip&disease=%22COVID-19%22&$limit=10000&location_type=%22hsa%22&$order=county_name",
|
|
636
|
+
"dataFileSourceType": "url",
|
|
637
|
+
"dataFileFormat": "JSON",
|
|
638
|
+
"preview": true,
|
|
639
|
+
"dataUrl": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&$select=county_fips,county_name,hsa_description,category,p_growing,report_date,category_tooltip&disease=%22COVID-19%22&$limit=10000&location_type=%22hsa%22&$order=county_name"
|
|
640
|
+
},
|
|
641
|
+
"rt_estimates_map": {
|
|
642
|
+
"dataFileSize": 21449,
|
|
643
|
+
"dataFileName": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&disease=\"COVID-19\"&location_type=%22state%22&$limit=60",
|
|
644
|
+
"dataFileSourceType": "url",
|
|
645
|
+
"dataFileFormat": "JSON",
|
|
646
|
+
"preview": false,
|
|
647
|
+
"dataUrl": "https://cfa-public.services.cdc.gov/od-public?$datakey=rt_estimates_map&disease=\"COVID-19\"&location_type=%22state%22&$limit=60",
|
|
648
|
+
"dataMetadata": {}
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|