@cdc/chart 4.25.10 → 4.26.1
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/dist/{cdcchart-1a1724a1.es.js → cdcchart-dgT_1dIT.es.js} +136 -151
- package/dist/cdcchart.js +44003 -43518
- package/examples/feature/__data__/planet-example-data.json +1 -1
- package/examples/feature/boxplot/valid-boxplot.csv +38 -17
- package/examples/feature/pie/planet-pie-example-config.json +48 -2
- package/examples/private/DEV-11825.json +573 -0
- package/examples/private/DEV-12100.json +1303 -0
- package/examples/private/cat-y.json +1235 -0
- package/examples/private/data-points.json +228 -0
- package/examples/private/height.json +3915 -0
- package/examples/private/links.json +569 -0
- package/examples/private/na.json +913 -0
- package/examples/private/quadrant.txt +30 -0
- package/examples/private/test-data.csv +28 -0
- package/examples/private/test-forecast.json +5510 -0
- package/examples/private/warming-stripe-test.json +2578 -0
- package/examples/private/warming-stripes.json +4763 -0
- package/examples/tech-adoption-with-links.json +560 -0
- package/index.html +16 -140
- package/package.json +6 -5
- package/preview.html +1616 -0
- package/src/CdcChart.tsx +8 -11
- package/src/CdcChartComponent.tsx +329 -124
- package/src/_stories/Chart.Combo.stories.tsx +18 -0
- package/src/_stories/Chart.Forecast.stories.tsx +36 -0
- package/src/_stories/Chart.HTMLInDataTable.stories.tsx +520 -0
- package/src/_stories/Chart.Patterns.stories.tsx +2 -1
- package/src/_stories/Chart.PreserveDecimals.stories.tsx +220 -0
- package/src/_stories/Chart.Regions.Categorical.stories.tsx +148 -0
- package/src/_stories/Chart.Regions.DateScale.stories.tsx +197 -0
- package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +297 -0
- package/src/_stories/Chart.SmallMultiples.stories.tsx +47 -0
- package/src/_stories/Chart.stories.tsx +8 -0
- package/src/_stories/ChartAnnotation.stories.tsx +6 -3
- package/src/_stories/ChartBar.Editor.stories.tsx +3585 -0
- package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
- package/src/_stories/ChartBrush.stories.tsx +50 -0
- package/src/_stories/ChartEditor.Editor.stories.tsx +656 -0
- package/src/_stories/ChartEditor.stories.tsx +1 -2
- package/src/_stories/TechAdoptionWithLinks.stories.tsx +27 -0
- package/src/_stories/_mock/brush_enabled.json +326 -0
- package/src/_stories/_mock/brush_mock.json +2 -69
- package/src/_stories/_mock/combo.json +451 -0
- package/src/_stories/_mock/editor-test-configs.json +376 -0
- package/src/_stories/_mock/editor-test-datasets.json +477 -0
- package/src/_stories/_mock/editor-tests/bar-chart-editor-test.json +255 -0
- package/src/_stories/_mock/editor-tests/bar-chart-general-test.json +267 -0
- package/src/_stories/_mock/editor-tests/bar-chart-test.json +237 -0
- package/src/_stories/_mock/forecast_combo_with_gaps.json +913 -0
- package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
- package/src/_stories/_mock/pie_config.json +257 -62
- package/src/_stories/_mock/small_multiples/small_multiples_bars.json +1944 -0
- package/src/_stories/_mock/small_multiples/small_multiples_big_data_bars.json +1114 -0
- package/src/_stories/_mock/small_multiples/small_multiples_lines.json +2646 -0
- package/src/_stories/_mock/small_multiples/small_multiples_lines_colors.json +1305 -0
- package/src/_stories/_mock/small_multiples/small_multiples_stacked_bars.json +1936 -0
- package/src/components/Annotations/components/findNearestDatum.ts +6 -41
- package/src/components/AreaChart/components/AreaChart.Stacked.jsx +10 -7
- package/src/components/AreaChart/index.tsx +1 -2
- package/src/components/Axis/Categorical.Axis.tsx +6 -7
- package/src/components/BarChart/components/BarChart.Horizontal.tsx +181 -27
- package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
- package/src/components/BarChart/components/BarChart.Vertical.tsx +8 -9
- package/src/components/BarChart/components/context.tsx +1 -0
- package/src/components/BarChart/helpers/useBarChart.ts +14 -2
- package/src/components/BoxPlot/helpers/index.ts +3 -3
- package/src/components/Brush/BrushSelector.tsx +1258 -0
- package/src/components/Brush/MiniChartPreview.tsx +283 -0
- package/src/components/DeviationBar.jsx +9 -7
- package/src/components/EditorPanel/EditorPanel.tsx +2720 -2586
- package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +96 -111
- package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
- package/src/components/EditorPanel/components/Panels/Panel.General.tsx +76 -31
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +104 -55
- package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +54 -49
- package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +427 -0
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +96 -48
- package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
- package/src/components/EditorPanel/editor-panel.scss +0 -20
- package/src/components/EditorPanel/useEditorPermissions.ts +36 -31
- package/src/components/Forecasting/Forecasting.tsx +139 -21
- package/src/components/Legend/Legend.Component.tsx +16 -9
- package/src/components/Legend/Legend.tsx +3 -2
- package/src/components/Legend/helpers/createFormatLabels.tsx +325 -176
- package/src/components/Legend/helpers/getLegendClasses.ts +0 -1
- package/src/components/Legend/helpers/index.ts +10 -6
- package/src/components/LineChart/LineChartProps.ts +0 -3
- package/src/components/LineChart/helpers.ts +1 -1
- package/src/components/LineChart/index.tsx +36 -13
- package/src/components/LinearChart.tsx +559 -499
- package/src/components/PairedBarChart.jsx +20 -3
- package/src/components/Regions/components/Regions.tsx +366 -144
- package/src/components/Sankey/types/index.ts +1 -1
- package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
- package/src/components/SmallMultiples/SmallMultipleTile.tsx +202 -0
- package/src/components/SmallMultiples/SmallMultiples.css +32 -0
- package/src/components/SmallMultiples/SmallMultiples.tsx +271 -0
- package/src/components/SmallMultiples/index.ts +2 -0
- package/src/components/WarmingStripes/WarmingStripes.tsx +160 -0
- package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
- package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
- package/src/components/WarmingStripes/index.tsx +3 -0
- package/src/data/initial-state.js +16 -2
- package/src/helpers/buildForecastPaletteOptions.ts +0 -38
- package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
- package/src/helpers/getColorScale.ts +10 -0
- package/src/{hooks/useMinMax.ts → helpers/getMinMax.ts} +26 -14
- package/src/helpers/getYAxisAutoPadding.ts +53 -0
- package/src/helpers/sizeHelpers.ts +0 -20
- package/src/helpers/smallMultiplesHelpers.ts +529 -0
- package/src/hooks/useChartHoverAnalytics.tsx +10 -9
- package/src/hooks/useProgrammaticTooltip.ts +96 -0
- package/src/hooks/useScales.ts +98 -34
- package/src/hooks/useSmallMultipleSynchronization.ts +59 -0
- package/src/hooks/useTooltip.tsx +91 -25
- package/src/scss/DataTable.scss +0 -4
- package/src/scss/main.scss +18 -83
- package/src/store/chart.actions.ts +2 -0
- package/src/store/chart.reducer.ts +4 -0
- package/src/test/CdcChart.test.jsx +1 -1
- package/src/types/ChartConfig.ts +27 -6
- package/src/types/ChartContext.ts +3 -0
- package/src/types/Label.ts +1 -0
- package/src/utils/analyticsTracking.ts +19 -0
- package/LICENSE +0 -201
- package/src/_stories/_mock/pie_data.json +0 -218
- package/src/components/AreaChart/components/AreaChart.jsx +0 -109
- package/src/components/Brush/BrushChart.tsx +0 -128
- package/src/components/Brush/BrushController.tsx +0 -71
- package/src/components/Brush/types.tsx +0 -8
- package/src/components/BrushChart.tsx +0 -223
- package/src/helpers/sort.ts +0 -7
- package/src/hooks/useActiveElement.js +0 -19
- package/src/hooks/useChartClasses.js +0 -41
|
@@ -0,0 +1,1235 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dashboard": {
|
|
3
|
+
"theme": "theme-blue",
|
|
4
|
+
"sharedFilters": [
|
|
5
|
+
{
|
|
6
|
+
"key": "State/Territory",
|
|
7
|
+
"showDropdown": true,
|
|
8
|
+
"values": [
|
|
9
|
+
"Alabama",
|
|
10
|
+
"Alaska",
|
|
11
|
+
"Arizona",
|
|
12
|
+
"Arkansas",
|
|
13
|
+
"California",
|
|
14
|
+
"Colorado",
|
|
15
|
+
"Connecticut",
|
|
16
|
+
"Delaware",
|
|
17
|
+
"District of Columbia",
|
|
18
|
+
"Florida",
|
|
19
|
+
"Georgia",
|
|
20
|
+
"Guam",
|
|
21
|
+
"Hawaii",
|
|
22
|
+
"Idaho",
|
|
23
|
+
"Illinois",
|
|
24
|
+
"Indiana",
|
|
25
|
+
"Iowa",
|
|
26
|
+
"Kansas",
|
|
27
|
+
"Kentucky",
|
|
28
|
+
"Louisiana",
|
|
29
|
+
"Maine",
|
|
30
|
+
"Maryland",
|
|
31
|
+
"Massachusetts",
|
|
32
|
+
"Michigan",
|
|
33
|
+
"Minnesota",
|
|
34
|
+
"Mississippi",
|
|
35
|
+
"Missouri",
|
|
36
|
+
"Montana",
|
|
37
|
+
"Nebraska",
|
|
38
|
+
"Nevada",
|
|
39
|
+
"New Hampshire",
|
|
40
|
+
"New Jersey",
|
|
41
|
+
"New Mexico",
|
|
42
|
+
"New York",
|
|
43
|
+
"North Carolina",
|
|
44
|
+
"Ohio",
|
|
45
|
+
"Oklahoma",
|
|
46
|
+
"Oregon",
|
|
47
|
+
"Pennsylvania",
|
|
48
|
+
"Rhode Island",
|
|
49
|
+
"South Carolina",
|
|
50
|
+
"South Dakota",
|
|
51
|
+
"Tennessee",
|
|
52
|
+
"Texas",
|
|
53
|
+
"Utah",
|
|
54
|
+
"Vermont",
|
|
55
|
+
"Virginia",
|
|
56
|
+
"Washington",
|
|
57
|
+
"West Virginia",
|
|
58
|
+
"Wisconsin",
|
|
59
|
+
"Wyoming"
|
|
60
|
+
],
|
|
61
|
+
"type": "datafilter",
|
|
62
|
+
"columnName": "State/Territory",
|
|
63
|
+
"usedBy": [
|
|
64
|
+
"filtered-text1725461136347",
|
|
65
|
+
"chart1725462823392",
|
|
66
|
+
"map1725461946328",
|
|
67
|
+
"markup-include1725461699694",
|
|
68
|
+
"markup-include1725461520415",
|
|
69
|
+
"markup-include1727871607587"
|
|
70
|
+
],
|
|
71
|
+
"tier": 1,
|
|
72
|
+
"setByQueryParameter": "stateval",
|
|
73
|
+
"orderedValues": [
|
|
74
|
+
"Alabama",
|
|
75
|
+
"Alaska",
|
|
76
|
+
"Arizona",
|
|
77
|
+
"Arkansas",
|
|
78
|
+
"California",
|
|
79
|
+
"Colorado",
|
|
80
|
+
"Connecticut",
|
|
81
|
+
"Delaware",
|
|
82
|
+
"District of Columbia",
|
|
83
|
+
"Florida",
|
|
84
|
+
"Georgia",
|
|
85
|
+
"Guam",
|
|
86
|
+
"Hawaii",
|
|
87
|
+
"Idaho",
|
|
88
|
+
"Illinois",
|
|
89
|
+
"Indiana",
|
|
90
|
+
"Iowa",
|
|
91
|
+
"Kansas",
|
|
92
|
+
"Kentucky",
|
|
93
|
+
"Louisiana",
|
|
94
|
+
"Maine",
|
|
95
|
+
"Maryland",
|
|
96
|
+
"Massachusetts",
|
|
97
|
+
"Michigan",
|
|
98
|
+
"Minnesota",
|
|
99
|
+
"Mississippi",
|
|
100
|
+
"Missouri",
|
|
101
|
+
"Montana",
|
|
102
|
+
"Nebraska",
|
|
103
|
+
"Nevada",
|
|
104
|
+
"New Hampshire",
|
|
105
|
+
"New Jersey",
|
|
106
|
+
"New Mexico",
|
|
107
|
+
"New York",
|
|
108
|
+
"North Carolina",
|
|
109
|
+
"Ohio",
|
|
110
|
+
"Oklahoma",
|
|
111
|
+
"Oregon",
|
|
112
|
+
"Pennsylvania",
|
|
113
|
+
"Rhode Island",
|
|
114
|
+
"South Carolina",
|
|
115
|
+
"South Dakota",
|
|
116
|
+
"Tennessee",
|
|
117
|
+
"Texas",
|
|
118
|
+
"Utah",
|
|
119
|
+
"Vermont",
|
|
120
|
+
"Virginia",
|
|
121
|
+
"Washington",
|
|
122
|
+
"West Virginia",
|
|
123
|
+
"Wisconsin",
|
|
124
|
+
"Wyoming"
|
|
125
|
+
]
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
"rows": [
|
|
130
|
+
{
|
|
131
|
+
"columns": [
|
|
132
|
+
{
|
|
133
|
+
"width": 12,
|
|
134
|
+
"widget": "dashboardFilters1725458901075"
|
|
135
|
+
},
|
|
136
|
+
{},
|
|
137
|
+
{}
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"columns": [
|
|
142
|
+
{
|
|
143
|
+
"width": 12,
|
|
144
|
+
"widget": "filtered-text1725461136347"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"uuid": 1728577343173
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"columns": [
|
|
151
|
+
{
|
|
152
|
+
"width": 12,
|
|
153
|
+
"widget": "markup-include1725461518805"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"uuid": 1728577343173
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"columns": [
|
|
160
|
+
{
|
|
161
|
+
"width": 6,
|
|
162
|
+
"widget": "markup-include1725461699694"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"width": 6
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"uuid": 1728573135969
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"columns": [
|
|
172
|
+
{
|
|
173
|
+
"width": 4,
|
|
174
|
+
"widget": "markup-include1727871607587"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"width": 8,
|
|
178
|
+
"widget": "map1725461946328"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"uuid": 1728565947511
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"columns": [
|
|
185
|
+
{
|
|
186
|
+
"width": 12,
|
|
187
|
+
"widget": "markup-include1725461520415"
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
"uuid": 1728565945270
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"columns": [
|
|
194
|
+
{
|
|
195
|
+
"width": 12,
|
|
196
|
+
"widget": "chart1725462823392"
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"uuid": 1728565461703
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"visualizations": {
|
|
203
|
+
"dashboardFilters1725458901075": {
|
|
204
|
+
"filters": [],
|
|
205
|
+
"filterBehavior": "Filter Change",
|
|
206
|
+
"newViz": true,
|
|
207
|
+
"openModal": true,
|
|
208
|
+
"uid": "dashboardFilters1725458901075",
|
|
209
|
+
"type": "dashboardFilters",
|
|
210
|
+
"sharedFilterIndexes": [
|
|
211
|
+
0
|
|
212
|
+
],
|
|
213
|
+
"visualizationType": "dashboardFilters"
|
|
214
|
+
},
|
|
215
|
+
"filtered-text1725461136347": {
|
|
216
|
+
"title": "",
|
|
217
|
+
"type": "filtered-text",
|
|
218
|
+
"theme": "theme-blue",
|
|
219
|
+
"fontSize": "small",
|
|
220
|
+
"shadow": false,
|
|
221
|
+
"filters": [],
|
|
222
|
+
"visual": {
|
|
223
|
+
"hideBackgroundColor": false,
|
|
224
|
+
"background": false,
|
|
225
|
+
"roundedBorders": false,
|
|
226
|
+
"accent": false,
|
|
227
|
+
"border": false,
|
|
228
|
+
"borderColorTheme": false
|
|
229
|
+
},
|
|
230
|
+
"filterBehavior": "Filter Change",
|
|
231
|
+
"openModal": true,
|
|
232
|
+
"uid": "filtered-text1725461136347",
|
|
233
|
+
"visualizationType": "filtered-text",
|
|
234
|
+
"dataDescription": {
|
|
235
|
+
"horizontal": false,
|
|
236
|
+
"series": false
|
|
237
|
+
},
|
|
238
|
+
"dataKey": "All State/Territory Wastewater Viral Activity Levels",
|
|
239
|
+
"version": "4.24.9",
|
|
240
|
+
"textColumn": "Note"
|
|
241
|
+
},
|
|
242
|
+
"markup-include1725461518805": {
|
|
243
|
+
"filters": [],
|
|
244
|
+
"filterBehavior": "Filter Change",
|
|
245
|
+
"openModal": false,
|
|
246
|
+
"uid": "markup-include1725461518805",
|
|
247
|
+
"type": "markup-include",
|
|
248
|
+
"contentEditor": {
|
|
249
|
+
"inlineHTML": "<h3>Current Site Levels</h3>This map shows current wastewater viral activity levels of RSV at individual wastewater treatment plants or sampling locations reporting in the last week. A site may serve multiple counties, including those in another state.",
|
|
250
|
+
"showHeader": true,
|
|
251
|
+
"srcUrl": "#example",
|
|
252
|
+
"title": "",
|
|
253
|
+
"useInlineHTML": true
|
|
254
|
+
},
|
|
255
|
+
"theme": "theme-blue",
|
|
256
|
+
"visual": {
|
|
257
|
+
"border": false,
|
|
258
|
+
"accent": false,
|
|
259
|
+
"background": false,
|
|
260
|
+
"hideBackgroundColor": false,
|
|
261
|
+
"borderColorTheme": false
|
|
262
|
+
},
|
|
263
|
+
"showEditorPanel": true,
|
|
264
|
+
"visualizationType": "markup-include",
|
|
265
|
+
"dataDescription": {
|
|
266
|
+
"series": false
|
|
267
|
+
},
|
|
268
|
+
"dataKey": "All State/Territory Wastewater Viral Activity Levels",
|
|
269
|
+
"version": "4.24.10",
|
|
270
|
+
"markupVariables": []
|
|
271
|
+
},
|
|
272
|
+
"markup-include1725461520415": {
|
|
273
|
+
"filters": [],
|
|
274
|
+
"filterBehavior": "Filter Change",
|
|
275
|
+
"openModal": false,
|
|
276
|
+
"uid": "markup-include1725461520415",
|
|
277
|
+
"type": "markup-include",
|
|
278
|
+
"contentEditor": {
|
|
279
|
+
"inlineHTML": "<h3>Trends over Time</h3>This chart shows trends of RSV viral activity levels in wastewater. For comparison, you can also see national and regional trends.",
|
|
280
|
+
"showHeader": true,
|
|
281
|
+
"srcUrl": "#example",
|
|
282
|
+
"title": "",
|
|
283
|
+
"useInlineHTML": true
|
|
284
|
+
},
|
|
285
|
+
"theme": "theme-blue",
|
|
286
|
+
"visual": {
|
|
287
|
+
"border": false,
|
|
288
|
+
"accent": false,
|
|
289
|
+
"background": false,
|
|
290
|
+
"hideBackgroundColor": false,
|
|
291
|
+
"borderColorTheme": false
|
|
292
|
+
},
|
|
293
|
+
"showEditorPanel": true,
|
|
294
|
+
"visualizationType": "markup-include",
|
|
295
|
+
"dataDescription": {
|
|
296
|
+
"horizontal": false,
|
|
297
|
+
"series": false
|
|
298
|
+
},
|
|
299
|
+
"dataKey": "All State/Territory Wastewater Viral Activity Levels",
|
|
300
|
+
"version": "4.25.7",
|
|
301
|
+
"migrations": {
|
|
302
|
+
"addColorMigration": true
|
|
303
|
+
},
|
|
304
|
+
"markupVariables": []
|
|
305
|
+
},
|
|
306
|
+
"markup-include1725461699694": {
|
|
307
|
+
"filters": [],
|
|
308
|
+
"filterBehavior": "Filter Change",
|
|
309
|
+
"openModal": false,
|
|
310
|
+
"uid": "markup-include1725461699694",
|
|
311
|
+
"type": "markup-include",
|
|
312
|
+
"contentEditor": {
|
|
313
|
+
"inlineHTML": "<h5 class=\"fs1\">Time Period: {{time}}</h5>",
|
|
314
|
+
"showHeader": true,
|
|
315
|
+
"srcUrl": "#example",
|
|
316
|
+
"title": "",
|
|
317
|
+
"useInlineHTML": true
|
|
318
|
+
},
|
|
319
|
+
"theme": "theme-blue",
|
|
320
|
+
"visual": {
|
|
321
|
+
"border": false,
|
|
322
|
+
"accent": false,
|
|
323
|
+
"background": false,
|
|
324
|
+
"hideBackgroundColor": false,
|
|
325
|
+
"borderColorTheme": false
|
|
326
|
+
},
|
|
327
|
+
"showEditorPanel": true,
|
|
328
|
+
"visualizationType": "markup-include",
|
|
329
|
+
"dataDescription": {
|
|
330
|
+
"horizontal": false,
|
|
331
|
+
"series": false
|
|
332
|
+
},
|
|
333
|
+
"dataKey": "Current Site Levels",
|
|
334
|
+
"version": "4.24.10",
|
|
335
|
+
"markupVariables": [
|
|
336
|
+
{
|
|
337
|
+
"columnName": "Reporting_Week",
|
|
338
|
+
"conditions": [],
|
|
339
|
+
"name": "time",
|
|
340
|
+
"tag": "{{time}}"
|
|
341
|
+
}
|
|
342
|
+
],
|
|
343
|
+
"enableMarkupVariables": true
|
|
344
|
+
},
|
|
345
|
+
"map1725461946328": {
|
|
346
|
+
"annotations": [],
|
|
347
|
+
"general": {
|
|
348
|
+
"geoType": "single-state",
|
|
349
|
+
"annotationDropdownText": "Annotations",
|
|
350
|
+
"geoBorderColor": "darkGray",
|
|
351
|
+
"headerColor": "theme-blue",
|
|
352
|
+
"title": "",
|
|
353
|
+
"showTitle": false,
|
|
354
|
+
"showSidebar": true,
|
|
355
|
+
"showDownloadMediaButton": false,
|
|
356
|
+
"displayAsHex": false,
|
|
357
|
+
"displayStateLabels": false,
|
|
358
|
+
"territoriesAlwaysShow": false,
|
|
359
|
+
"language": "en",
|
|
360
|
+
"geoLabelOverride": "",
|
|
361
|
+
"hasRegions": false,
|
|
362
|
+
"fullBorder": false,
|
|
363
|
+
"type": "data",
|
|
364
|
+
"convertFipsCodes": true,
|
|
365
|
+
"palette": {
|
|
366
|
+
"isReversed": false,
|
|
367
|
+
"name": "sequential_blue_green",
|
|
368
|
+
"customColors": [
|
|
369
|
+
"#34547B",
|
|
370
|
+
"#34547B",
|
|
371
|
+
"#4B7F9B",
|
|
372
|
+
"#6bb0bd",
|
|
373
|
+
"#9fdad0",
|
|
374
|
+
"#c8efda",
|
|
375
|
+
"#B4B4B4",
|
|
376
|
+
"#B4B4B4",
|
|
377
|
+
"#B4B4B4",
|
|
378
|
+
"#c8efda",
|
|
379
|
+
"#c8efda",
|
|
380
|
+
"#C8EFDA",
|
|
381
|
+
"#C8EFDA"
|
|
382
|
+
],
|
|
383
|
+
"version": "1.0"
|
|
384
|
+
},
|
|
385
|
+
"allowMapZoom": true,
|
|
386
|
+
"hideGeoColumnInTooltip": true,
|
|
387
|
+
"hidePrimaryColumnInTooltip": false,
|
|
388
|
+
"expandDataTable": false,
|
|
389
|
+
"subtext": "<div class=\"text-left ml-3 pb-3\"> </div>",
|
|
390
|
+
"navigationTarget": "_self",
|
|
391
|
+
"statesPicked": [
|
|
392
|
+
{
|
|
393
|
+
"fipsCode": "01",
|
|
394
|
+
"stateName": "Alabama"
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"filterControlsStatesPicked": "State/Territory"
|
|
398
|
+
},
|
|
399
|
+
"type": "map",
|
|
400
|
+
"columns": {
|
|
401
|
+
"geo": {
|
|
402
|
+
"name": "Sewershed_ID",
|
|
403
|
+
"label": "Location",
|
|
404
|
+
"tooltip": false,
|
|
405
|
+
"dataTable": true
|
|
406
|
+
},
|
|
407
|
+
"primary": {
|
|
408
|
+
"dataTable": true,
|
|
409
|
+
"tooltip": true,
|
|
410
|
+
"prefix": "",
|
|
411
|
+
"suffix": "",
|
|
412
|
+
"name": "WVAL_Category",
|
|
413
|
+
"label": "Viral Activity Level",
|
|
414
|
+
"roundToPlace": 0
|
|
415
|
+
},
|
|
416
|
+
"navigate": {
|
|
417
|
+
"name": ""
|
|
418
|
+
},
|
|
419
|
+
"latitude": {
|
|
420
|
+
"name": "latitude"
|
|
421
|
+
},
|
|
422
|
+
"longitude": {
|
|
423
|
+
"name": "longitude"
|
|
424
|
+
},
|
|
425
|
+
"additionalColumn1": {
|
|
426
|
+
"label": "Counties Served",
|
|
427
|
+
"dataTable": true,
|
|
428
|
+
"tooltips": false,
|
|
429
|
+
"prefix": "",
|
|
430
|
+
"suffix": "",
|
|
431
|
+
"name": "Counties_Served",
|
|
432
|
+
"tooltip": true,
|
|
433
|
+
"useCommas": false
|
|
434
|
+
},
|
|
435
|
+
"additionalColumn2": {
|
|
436
|
+
"label": "Population Served",
|
|
437
|
+
"dataTable": true,
|
|
438
|
+
"tooltips": false,
|
|
439
|
+
"prefix": "",
|
|
440
|
+
"suffix": "",
|
|
441
|
+
"name": "Population_Served",
|
|
442
|
+
"tooltip": true,
|
|
443
|
+
"useCommas": true
|
|
444
|
+
},
|
|
445
|
+
"additionalColumn3": {
|
|
446
|
+
"label": "First Sample Collected",
|
|
447
|
+
"dataTable": true,
|
|
448
|
+
"tooltips": false,
|
|
449
|
+
"prefix": "",
|
|
450
|
+
"suffix": "",
|
|
451
|
+
"tooltip": true,
|
|
452
|
+
"name": "date_included_in_wval"
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
"legend": {
|
|
456
|
+
"descriptions": {},
|
|
457
|
+
"specialClasses": [],
|
|
458
|
+
"unified": false,
|
|
459
|
+
"singleColumn": false,
|
|
460
|
+
"singleRow": true,
|
|
461
|
+
"verticalSorted": false,
|
|
462
|
+
"showSpecialClassesLast": false,
|
|
463
|
+
"dynamicDescription": false,
|
|
464
|
+
"type": "category",
|
|
465
|
+
"numberOfItems": 3,
|
|
466
|
+
"position": "bottom",
|
|
467
|
+
"title": "Current Site Levels",
|
|
468
|
+
"categoryValuesOrder": [
|
|
469
|
+
"Very High",
|
|
470
|
+
"High",
|
|
471
|
+
"Moderate",
|
|
472
|
+
"Low",
|
|
473
|
+
"Very Low",
|
|
474
|
+
"No Data",
|
|
475
|
+
"Minimal"
|
|
476
|
+
],
|
|
477
|
+
"additionalCategories": [
|
|
478
|
+
"Very High",
|
|
479
|
+
"High",
|
|
480
|
+
"Moderate",
|
|
481
|
+
"Low",
|
|
482
|
+
"Very Low",
|
|
483
|
+
"No Data"
|
|
484
|
+
],
|
|
485
|
+
"style": "circles",
|
|
486
|
+
"subStyle": "linear blocks",
|
|
487
|
+
"tickRotation": "",
|
|
488
|
+
"singleColumnLegend": false,
|
|
489
|
+
"hideBorder": false,
|
|
490
|
+
"description": "Select a level to add or remove from map."
|
|
491
|
+
},
|
|
492
|
+
"filters": [],
|
|
493
|
+
"table": {
|
|
494
|
+
"wrapColumns": false,
|
|
495
|
+
"label": "Data Table",
|
|
496
|
+
"expanded": false,
|
|
497
|
+
"limitHeight": false,
|
|
498
|
+
"height": "",
|
|
499
|
+
"caption": "",
|
|
500
|
+
"showDownloadUrl": false,
|
|
501
|
+
"showDataTableLink": false,
|
|
502
|
+
"showFullGeoNameInCSV": false,
|
|
503
|
+
"forceDisplay": false,
|
|
504
|
+
"download": true,
|
|
505
|
+
"indexLabel": "",
|
|
506
|
+
"showDownloadLinkBelow": true
|
|
507
|
+
},
|
|
508
|
+
"tooltips": {
|
|
509
|
+
"appearanceType": "hover",
|
|
510
|
+
"linkLabel": "Learn More",
|
|
511
|
+
"capitalizeLabels": true,
|
|
512
|
+
"opacity": 90
|
|
513
|
+
},
|
|
514
|
+
"visual": {
|
|
515
|
+
"minBubbleSize": 1,
|
|
516
|
+
"maxBubbleSize": 20,
|
|
517
|
+
"extraBubbleBorder": false,
|
|
518
|
+
"cityStyle": "circle",
|
|
519
|
+
"cityStyleLabel": "",
|
|
520
|
+
"showBubbleZeros": false,
|
|
521
|
+
"additionalCityStyles": [],
|
|
522
|
+
"geoCodeCircleSize": "2"
|
|
523
|
+
},
|
|
524
|
+
"mapPosition": {
|
|
525
|
+
"coordinates": [
|
|
526
|
+
0,
|
|
527
|
+
0
|
|
528
|
+
],
|
|
529
|
+
"zoom": 1
|
|
530
|
+
},
|
|
531
|
+
"map": {
|
|
532
|
+
"layers": [],
|
|
533
|
+
"patterns": []
|
|
534
|
+
},
|
|
535
|
+
"hexMap": {
|
|
536
|
+
"type": "",
|
|
537
|
+
"shapeGroups": [
|
|
538
|
+
{
|
|
539
|
+
"legendTitle": "",
|
|
540
|
+
"legendDescription": "",
|
|
541
|
+
"items": [
|
|
542
|
+
{
|
|
543
|
+
"key": "",
|
|
544
|
+
"shape": "Arrow Up",
|
|
545
|
+
"column": "",
|
|
546
|
+
"operator": "=",
|
|
547
|
+
"value": ""
|
|
548
|
+
}
|
|
549
|
+
]
|
|
550
|
+
}
|
|
551
|
+
]
|
|
552
|
+
},
|
|
553
|
+
"filterBehavior": "Filter Change",
|
|
554
|
+
"filterIntro": "",
|
|
555
|
+
"openModal": true,
|
|
556
|
+
"uid": "map1725461946328",
|
|
557
|
+
"dataDescription": {
|
|
558
|
+
"horizontal": false,
|
|
559
|
+
"series": false
|
|
560
|
+
},
|
|
561
|
+
"dataKey": "Current Site Levels",
|
|
562
|
+
"version": "4.25.1",
|
|
563
|
+
"migrations": {
|
|
564
|
+
"addColorMigration": true
|
|
565
|
+
}
|
|
566
|
+
},
|
|
567
|
+
"chart1725462823392": {
|
|
568
|
+
"annotations": [],
|
|
569
|
+
"type": "chart",
|
|
570
|
+
"debugSvg": false,
|
|
571
|
+
"chartMessage": {
|
|
572
|
+
"noData": "No Data Available"
|
|
573
|
+
},
|
|
574
|
+
"title": "",
|
|
575
|
+
"showTitle": false,
|
|
576
|
+
"showDownloadMediaButton": false,
|
|
577
|
+
"theme": "theme-blue",
|
|
578
|
+
"animate": false,
|
|
579
|
+
"lineDatapointStyle": "hover",
|
|
580
|
+
"lineDatapointColor": "Same as Line",
|
|
581
|
+
"barHasBorder": "false",
|
|
582
|
+
"isLollipopChart": false,
|
|
583
|
+
"lollipopShape": "circle",
|
|
584
|
+
"lollipopColorStyle": "two-tone",
|
|
585
|
+
"visualizationSubType": "regular",
|
|
586
|
+
"barStyle": "flat",
|
|
587
|
+
"roundingStyle": "standard",
|
|
588
|
+
"tipRounding": "top",
|
|
589
|
+
"isResponsiveTicks": false,
|
|
590
|
+
"general": {
|
|
591
|
+
"annotationDropdownText": "Annotations",
|
|
592
|
+
"showMissingDataLabel": true,
|
|
593
|
+
"showSuppressedSymbol": true,
|
|
594
|
+
"showZeroValueData": true,
|
|
595
|
+
"hideNullValue": true,
|
|
596
|
+
"palette": {
|
|
597
|
+
"name": "qualitative_bold",
|
|
598
|
+
"customColors": [
|
|
599
|
+
"#F7A866",
|
|
600
|
+
"#000000",
|
|
601
|
+
"#844774",
|
|
602
|
+
"#7EB0C4",
|
|
603
|
+
"#0A6C75",
|
|
604
|
+
"#C0F2FD",
|
|
605
|
+
"#C0F2FD",
|
|
606
|
+
"#C0F2FD",
|
|
607
|
+
"#C0F2FD"
|
|
608
|
+
],
|
|
609
|
+
"version": "1.0"
|
|
610
|
+
},
|
|
611
|
+
"showZeroValueDataLabel": true
|
|
612
|
+
},
|
|
613
|
+
"padding": {
|
|
614
|
+
"left": 5,
|
|
615
|
+
"right": 5
|
|
616
|
+
},
|
|
617
|
+
"preliminaryData": [
|
|
618
|
+
{
|
|
619
|
+
"type": "effect",
|
|
620
|
+
"label": "<5% Population",
|
|
621
|
+
"column": "Coverage",
|
|
622
|
+
"value": "Limited Coverage",
|
|
623
|
+
"style": "Open Circles",
|
|
624
|
+
"displayTooltip": true,
|
|
625
|
+
"displayLegend": true,
|
|
626
|
+
"displayTable": true,
|
|
627
|
+
"symbol": "",
|
|
628
|
+
"iconCode": "",
|
|
629
|
+
"lineCode": "◯",
|
|
630
|
+
"hideBarSymbol": false,
|
|
631
|
+
"hideLineStyle": false,
|
|
632
|
+
"circleSize": "4",
|
|
633
|
+
"displayGray": true,
|
|
634
|
+
"seriesKeys": [
|
|
635
|
+
"State/Territory_WVAL"
|
|
636
|
+
]
|
|
637
|
+
}
|
|
638
|
+
],
|
|
639
|
+
"yAxis": {
|
|
640
|
+
"hideAxis": false,
|
|
641
|
+
"displayNumbersOnBar": false,
|
|
642
|
+
"hideLabel": false,
|
|
643
|
+
"hideTicks": false,
|
|
644
|
+
"size": "100",
|
|
645
|
+
"gridLines": true,
|
|
646
|
+
"enablePadding": false,
|
|
647
|
+
"min": "0",
|
|
648
|
+
"max": "",
|
|
649
|
+
"labelColor": "#1c1d1f",
|
|
650
|
+
"tickLabelColor": "#1c1d1f",
|
|
651
|
+
"tickColor": "#1c1d1f",
|
|
652
|
+
"rightHideAxis": true,
|
|
653
|
+
"rightAxisSize": 0,
|
|
654
|
+
"rightLabel": "",
|
|
655
|
+
"rightLabelOffsetSize": 0,
|
|
656
|
+
"rightAxisLabelColor": "#1c1d1f",
|
|
657
|
+
"rightAxisTickLabelColor": "#1c1d1f",
|
|
658
|
+
"rightAxisTickColor": "#1c1d1f",
|
|
659
|
+
"numTicks": "",
|
|
660
|
+
"axisPadding": 0,
|
|
661
|
+
"scalePadding": 10,
|
|
662
|
+
"tickRotation": 0,
|
|
663
|
+
"anchors": [],
|
|
664
|
+
"shoMissingDataLabel": true,
|
|
665
|
+
"showMissingDataLine": true,
|
|
666
|
+
"categories": [
|
|
667
|
+
{
|
|
668
|
+
"label": "Very Low",
|
|
669
|
+
"height": "2.5",
|
|
670
|
+
"color": "#C8EFDA"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"label": "Low",
|
|
674
|
+
"height": "2.7",
|
|
675
|
+
"color": "#9FDAD0"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"label": "Moderate",
|
|
679
|
+
"height": "2.8",
|
|
680
|
+
"color": "#6BB0BD"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"label": "High",
|
|
684
|
+
"height": "3",
|
|
685
|
+
"color": "#4B7F9B"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"label": "Very High",
|
|
689
|
+
"height": "",
|
|
690
|
+
"color": "#34547B"
|
|
691
|
+
}
|
|
692
|
+
],
|
|
693
|
+
"type": "categorical",
|
|
694
|
+
"maxValue": 1084.05065083491
|
|
695
|
+
},
|
|
696
|
+
"boxplot": {
|
|
697
|
+
"plots": [],
|
|
698
|
+
"borders": "true",
|
|
699
|
+
"plotOutlierValues": false,
|
|
700
|
+
"plotNonOutlierValues": true,
|
|
701
|
+
"labels": {
|
|
702
|
+
"q1": "Lower Quartile",
|
|
703
|
+
"q2": "q2",
|
|
704
|
+
"q3": "Upper Quartile",
|
|
705
|
+
"q4": "q4",
|
|
706
|
+
"minimum": "Minimum",
|
|
707
|
+
"maximum": "Maximum",
|
|
708
|
+
"mean": "Mean",
|
|
709
|
+
"median": "Median",
|
|
710
|
+
"sd": "Standard Deviation",
|
|
711
|
+
"iqr": "Interquartile Range",
|
|
712
|
+
"total": "Total",
|
|
713
|
+
"outliers": "Outliers",
|
|
714
|
+
"values": "Values",
|
|
715
|
+
"lowerBounds": "Lower Bounds",
|
|
716
|
+
"upperBounds": "Upper Bounds",
|
|
717
|
+
"count": "Count"
|
|
718
|
+
},
|
|
719
|
+
"firstQuartilePercentage": 25,
|
|
720
|
+
"thirdQuartilePercentage": 75,
|
|
721
|
+
"boxWidthPercentage": 40,
|
|
722
|
+
"legend": {
|
|
723
|
+
"showHowToReadText": false,
|
|
724
|
+
"howToReadText": ""
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
"topAxis": {
|
|
728
|
+
"hasLine": false
|
|
729
|
+
},
|
|
730
|
+
"isLegendValue": false,
|
|
731
|
+
"barThickness": 0.35,
|
|
732
|
+
"barHeight": 25,
|
|
733
|
+
"barSpace": 15,
|
|
734
|
+
"heights": {
|
|
735
|
+
"vertical": "275",
|
|
736
|
+
"horizontal": 750
|
|
737
|
+
},
|
|
738
|
+
"xAxis": {
|
|
739
|
+
"sortDates": false,
|
|
740
|
+
"anchors": [],
|
|
741
|
+
"type": "date",
|
|
742
|
+
"showTargetLabel": true,
|
|
743
|
+
"targetLabel": "Target",
|
|
744
|
+
"hideAxis": false,
|
|
745
|
+
"hideLabel": false,
|
|
746
|
+
"hideTicks": false,
|
|
747
|
+
"size": "50",
|
|
748
|
+
"tickRotation": "45",
|
|
749
|
+
"min": "",
|
|
750
|
+
"max": "",
|
|
751
|
+
"labelColor": "#1c1d1f",
|
|
752
|
+
"tickLabelColor": "#1c1d1f",
|
|
753
|
+
"tickColor": "#1c1d1f",
|
|
754
|
+
"numTicks": "",
|
|
755
|
+
"labelOffset": 0,
|
|
756
|
+
"axisPadding": 200,
|
|
757
|
+
"target": 0,
|
|
758
|
+
"maxTickRotation": 0,
|
|
759
|
+
"padding": 6,
|
|
760
|
+
"showYearsOnce": false,
|
|
761
|
+
"sortByRecentDate": false,
|
|
762
|
+
"brushActive": false,
|
|
763
|
+
"dataKey": "Week_Ending_Date",
|
|
764
|
+
"dateParseFormat": "%Y-%m-%d",
|
|
765
|
+
"dateDisplayFormat": "%m/%d/%y",
|
|
766
|
+
"tickWidthMax": 67,
|
|
767
|
+
"axisBBox": 103.25208282470703,
|
|
768
|
+
"label": "Week Ending"
|
|
769
|
+
},
|
|
770
|
+
"table": {
|
|
771
|
+
"label": "Data Table",
|
|
772
|
+
"expanded": false,
|
|
773
|
+
"limitHeight": false,
|
|
774
|
+
"height": "",
|
|
775
|
+
"caption": "",
|
|
776
|
+
"showDownloadUrl": false,
|
|
777
|
+
"showDataTableLink": false,
|
|
778
|
+
"showDownloadLinkBelow": true,
|
|
779
|
+
"indexLabel": "",
|
|
780
|
+
"download": true,
|
|
781
|
+
"showVertical": true,
|
|
782
|
+
"dateDisplayFormat": "",
|
|
783
|
+
"showMissingDataLabel": true,
|
|
784
|
+
"showSuppressedSymbol": true,
|
|
785
|
+
"collapsible": true,
|
|
786
|
+
"show": false,
|
|
787
|
+
"sharedFilterColumns": [
|
|
788
|
+
"State/Territory"
|
|
789
|
+
]
|
|
790
|
+
},
|
|
791
|
+
"orientation": "vertical",
|
|
792
|
+
"color": "qualitative-bold",
|
|
793
|
+
"columns": {
|
|
794
|
+
"WVAL_Category": {
|
|
795
|
+
"label": "State WVAL Category",
|
|
796
|
+
"dataTable": true,
|
|
797
|
+
"tooltips": true,
|
|
798
|
+
"prefix": "",
|
|
799
|
+
"suffix": "",
|
|
800
|
+
"forestPlot": false,
|
|
801
|
+
"startingPoint": "0",
|
|
802
|
+
"forestPlotAlignRight": false,
|
|
803
|
+
"roundToPlace": 0,
|
|
804
|
+
"commas": false,
|
|
805
|
+
"showInViz": false,
|
|
806
|
+
"forestPlotStartingPoint": 0,
|
|
807
|
+
"name": "WVAL_Category",
|
|
808
|
+
"series": "value",
|
|
809
|
+
"order": null
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
"legend": {
|
|
813
|
+
"hide": false,
|
|
814
|
+
"behavior": "isolate",
|
|
815
|
+
"axisAlign": true,
|
|
816
|
+
"singleRow": true,
|
|
817
|
+
"colorCode": "",
|
|
818
|
+
"reverseLabelOrder": false,
|
|
819
|
+
"description": "",
|
|
820
|
+
"dynamicLegend": false,
|
|
821
|
+
"dynamicLegendDefaultText": "Show All",
|
|
822
|
+
"dynamicLegendItemLimit": 5,
|
|
823
|
+
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
824
|
+
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
825
|
+
"label": "",
|
|
826
|
+
"lineMode": false,
|
|
827
|
+
"verticalSorted": false,
|
|
828
|
+
"highlightOnHover": false,
|
|
829
|
+
"hideSuppressedLabels": false,
|
|
830
|
+
"hideSuppressionLink": false,
|
|
831
|
+
"seriesHighlight": [],
|
|
832
|
+
"style": "lines",
|
|
833
|
+
"subStyle": "linear blocks",
|
|
834
|
+
"groupBy": "",
|
|
835
|
+
"shape": "circle",
|
|
836
|
+
"tickRotation": "",
|
|
837
|
+
"order": "dataColumn",
|
|
838
|
+
"hideBorder": {
|
|
839
|
+
"side": false,
|
|
840
|
+
"topBottom": true
|
|
841
|
+
},
|
|
842
|
+
"position": "bottom",
|
|
843
|
+
"orderedValues": [],
|
|
844
|
+
"patterns": {},
|
|
845
|
+
"patternField": "",
|
|
846
|
+
"unified": true
|
|
847
|
+
},
|
|
848
|
+
"smallMultiples": {
|
|
849
|
+
"mode": "",
|
|
850
|
+
"tileColumn": "",
|
|
851
|
+
"tilesPerRowDesktop": 3,
|
|
852
|
+
"tilesPerRowMobile": 1,
|
|
853
|
+
"tileOrder": [],
|
|
854
|
+
"tileOrderType": "asc",
|
|
855
|
+
"tileTitles": {},
|
|
856
|
+
"independentYAxis": false,
|
|
857
|
+
"colorMode": "same",
|
|
858
|
+
"synchronizedTooltips": true,
|
|
859
|
+
"showAreaUnderLine": true
|
|
860
|
+
},
|
|
861
|
+
"exclusions": {
|
|
862
|
+
"active": false,
|
|
863
|
+
"keys": []
|
|
864
|
+
},
|
|
865
|
+
"twoColor": {
|
|
866
|
+
"palette": "monochrome-1",
|
|
867
|
+
"isPaletteReversed": false
|
|
868
|
+
},
|
|
869
|
+
"labels": false,
|
|
870
|
+
"dataFormat": {
|
|
871
|
+
"commas": false,
|
|
872
|
+
"prefix": "",
|
|
873
|
+
"suffix": "",
|
|
874
|
+
"abbreviated": false,
|
|
875
|
+
"bottomSuffix": "",
|
|
876
|
+
"bottomPrefix": "",
|
|
877
|
+
"bottomAbbreviated": false,
|
|
878
|
+
"roundTo": "2"
|
|
879
|
+
},
|
|
880
|
+
"filters": [
|
|
881
|
+
{
|
|
882
|
+
"filterStyle": "dropdown",
|
|
883
|
+
"columnName": "Data_Collection_Period",
|
|
884
|
+
"order": "asc",
|
|
885
|
+
"label": "Date Period"
|
|
886
|
+
}
|
|
887
|
+
],
|
|
888
|
+
"confidenceKeys": {},
|
|
889
|
+
"visual": {
|
|
890
|
+
"border": true,
|
|
891
|
+
"accent": true,
|
|
892
|
+
"background": true,
|
|
893
|
+
"verticalHoverLine": false,
|
|
894
|
+
"horizontalHoverLine": false,
|
|
895
|
+
"lineDatapointSymbol": "none",
|
|
896
|
+
"maximumShapeAmount": 7
|
|
897
|
+
},
|
|
898
|
+
"useLogScale": false,
|
|
899
|
+
"filterBehavior": "Filter Change",
|
|
900
|
+
"highlightedBarValues": [],
|
|
901
|
+
"series": [
|
|
902
|
+
{
|
|
903
|
+
"dataKey": "State/Territory_WVAL",
|
|
904
|
+
"type": "Line",
|
|
905
|
+
"axis": "Left",
|
|
906
|
+
"tooltip": true,
|
|
907
|
+
"lineType": "curveMonotoneX",
|
|
908
|
+
"name": "State/Territory"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"dataKey": "National_WVAL",
|
|
912
|
+
"type": "Line",
|
|
913
|
+
"axis": "Left",
|
|
914
|
+
"tooltip": true,
|
|
915
|
+
"lineType": "curveMonotoneX",
|
|
916
|
+
"name": "National"
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"dataKey": "Regional_WVAL",
|
|
920
|
+
"type": "Line",
|
|
921
|
+
"axis": "Left",
|
|
922
|
+
"tooltip": true,
|
|
923
|
+
"name": "Regional",
|
|
924
|
+
"lineType": "curveMonotoneX"
|
|
925
|
+
}
|
|
926
|
+
],
|
|
927
|
+
"tooltips": {
|
|
928
|
+
"opacity": 90,
|
|
929
|
+
"singleSeries": false,
|
|
930
|
+
"dateDisplayFormat": ""
|
|
931
|
+
},
|
|
932
|
+
"forestPlot": {
|
|
933
|
+
"startAt": 0,
|
|
934
|
+
"colors": {
|
|
935
|
+
"line": "",
|
|
936
|
+
"shape": ""
|
|
937
|
+
},
|
|
938
|
+
"lineOfNoEffect": {
|
|
939
|
+
"show": true
|
|
940
|
+
},
|
|
941
|
+
"type": "",
|
|
942
|
+
"pooledResult": {
|
|
943
|
+
"diamondHeight": 5,
|
|
944
|
+
"column": ""
|
|
945
|
+
},
|
|
946
|
+
"estimateField": "",
|
|
947
|
+
"estimateRadius": "",
|
|
948
|
+
"shape": "square",
|
|
949
|
+
"rowHeight": 20,
|
|
950
|
+
"description": {
|
|
951
|
+
"show": true,
|
|
952
|
+
"text": "description",
|
|
953
|
+
"location": 0
|
|
954
|
+
},
|
|
955
|
+
"result": {
|
|
956
|
+
"show": true,
|
|
957
|
+
"text": "result",
|
|
958
|
+
"location": 100
|
|
959
|
+
},
|
|
960
|
+
"radius": {
|
|
961
|
+
"min": 2,
|
|
962
|
+
"max": 10,
|
|
963
|
+
"scalingColumn": ""
|
|
964
|
+
},
|
|
965
|
+
"regression": {
|
|
966
|
+
"lower": 0,
|
|
967
|
+
"upper": 0,
|
|
968
|
+
"estimateField": 0
|
|
969
|
+
},
|
|
970
|
+
"leftWidthOffset": 0,
|
|
971
|
+
"rightWidthOffset": 0,
|
|
972
|
+
"showZeroLine": false,
|
|
973
|
+
"leftLabel": "",
|
|
974
|
+
"rightLabel": ""
|
|
975
|
+
},
|
|
976
|
+
"area": {
|
|
977
|
+
"isStacked": false
|
|
978
|
+
},
|
|
979
|
+
"sankey": {
|
|
980
|
+
"title": {
|
|
981
|
+
"defaultColor": "black"
|
|
982
|
+
},
|
|
983
|
+
"iterations": 1,
|
|
984
|
+
"rxValue": 0.9,
|
|
985
|
+
"overallSize": {
|
|
986
|
+
"width": 900,
|
|
987
|
+
"height": 700
|
|
988
|
+
},
|
|
989
|
+
"margin": {
|
|
990
|
+
"margin_y": 25,
|
|
991
|
+
"margin_x": 0
|
|
992
|
+
},
|
|
993
|
+
"nodeSize": {
|
|
994
|
+
"nodeWidth": 26,
|
|
995
|
+
"nodeHeight": 40
|
|
996
|
+
},
|
|
997
|
+
"nodePadding": 55,
|
|
998
|
+
"nodeFontColor": "black",
|
|
999
|
+
"nodeColor": {
|
|
1000
|
+
"default": "#ff8500",
|
|
1001
|
+
"inactive": "#808080"
|
|
1002
|
+
},
|
|
1003
|
+
"linkColor": {
|
|
1004
|
+
"default": "#ffc900",
|
|
1005
|
+
"inactive": "#D3D3D3"
|
|
1006
|
+
},
|
|
1007
|
+
"opacity": {
|
|
1008
|
+
"nodeOpacityDefault": 1,
|
|
1009
|
+
"nodeOpacityInactive": 0.1,
|
|
1010
|
+
"LinkOpacityDefault": 1,
|
|
1011
|
+
"LinkOpacityInactive": 0.1
|
|
1012
|
+
},
|
|
1013
|
+
"storyNodeFontColor": "#006778",
|
|
1014
|
+
"storyNodeText": [],
|
|
1015
|
+
"nodeValueStyle": {
|
|
1016
|
+
"textBefore": "(",
|
|
1017
|
+
"textAfter": ")"
|
|
1018
|
+
},
|
|
1019
|
+
"data": []
|
|
1020
|
+
},
|
|
1021
|
+
"markupVariables": [],
|
|
1022
|
+
"enableMarkupVariables": false,
|
|
1023
|
+
"fontSize": "medium",
|
|
1024
|
+
"brush": {
|
|
1025
|
+
"height": 25,
|
|
1026
|
+
"active": false
|
|
1027
|
+
},
|
|
1028
|
+
"isPaletteReversed": false,
|
|
1029
|
+
"openModal": true,
|
|
1030
|
+
"uid": "chart1725462823392",
|
|
1031
|
+
"visualizationType": "Line",
|
|
1032
|
+
"dataDescription": {
|
|
1033
|
+
"horizontal": false,
|
|
1034
|
+
"series": false
|
|
1035
|
+
},
|
|
1036
|
+
"dataKey": "Trend Over Time",
|
|
1037
|
+
"version": "4.25.1",
|
|
1038
|
+
"dynamicMarginTop": 0,
|
|
1039
|
+
"regions": [
|
|
1040
|
+
{
|
|
1041
|
+
"background": "#777777",
|
|
1042
|
+
"fromType": "Previous Days",
|
|
1043
|
+
"from": "14",
|
|
1044
|
+
"toType": "Last Date"
|
|
1045
|
+
}
|
|
1046
|
+
],
|
|
1047
|
+
"description": "<div class=\"text-left ml-3 pb-3\">Data from the most recent two weeks may be incomplete due to delays in data reporting. These data sets are subject to change and are indicated by the gray shading. </div>",
|
|
1048
|
+
"migrations": {
|
|
1049
|
+
"addColorMigration": true
|
|
1050
|
+
},
|
|
1051
|
+
"dashboardFilters": [
|
|
1052
|
+
{
|
|
1053
|
+
"columnName": "State/Territory",
|
|
1054
|
+
"active": "Alabama",
|
|
1055
|
+
"values": [
|
|
1056
|
+
"Alabama",
|
|
1057
|
+
"Alaska",
|
|
1058
|
+
"Arizona",
|
|
1059
|
+
"Arkansas",
|
|
1060
|
+
"California",
|
|
1061
|
+
"Colorado",
|
|
1062
|
+
"Connecticut",
|
|
1063
|
+
"Delaware",
|
|
1064
|
+
"District of Columbia",
|
|
1065
|
+
"Florida",
|
|
1066
|
+
"Georgia",
|
|
1067
|
+
"Guam",
|
|
1068
|
+
"Hawaii",
|
|
1069
|
+
"Idaho",
|
|
1070
|
+
"Illinois",
|
|
1071
|
+
"Indiana",
|
|
1072
|
+
"Iowa",
|
|
1073
|
+
"Kansas",
|
|
1074
|
+
"Kentucky",
|
|
1075
|
+
"Louisiana",
|
|
1076
|
+
"Maine",
|
|
1077
|
+
"Maryland",
|
|
1078
|
+
"Massachusetts",
|
|
1079
|
+
"Michigan",
|
|
1080
|
+
"Minnesota",
|
|
1081
|
+
"Mississippi",
|
|
1082
|
+
"Missouri",
|
|
1083
|
+
"Montana",
|
|
1084
|
+
"Nebraska",
|
|
1085
|
+
"Nevada",
|
|
1086
|
+
"New Hampshire",
|
|
1087
|
+
"New Jersey",
|
|
1088
|
+
"New Mexico",
|
|
1089
|
+
"New York",
|
|
1090
|
+
"North Carolina",
|
|
1091
|
+
"Ohio",
|
|
1092
|
+
"Oklahoma",
|
|
1093
|
+
"Oregon",
|
|
1094
|
+
"Pennsylvania",
|
|
1095
|
+
"Rhode Island",
|
|
1096
|
+
"South Carolina",
|
|
1097
|
+
"South Dakota",
|
|
1098
|
+
"Tennessee",
|
|
1099
|
+
"Texas",
|
|
1100
|
+
"Utah",
|
|
1101
|
+
"Vermont",
|
|
1102
|
+
"Virginia",
|
|
1103
|
+
"Washington",
|
|
1104
|
+
"West Virginia",
|
|
1105
|
+
"Wisconsin",
|
|
1106
|
+
"Wyoming"
|
|
1107
|
+
]
|
|
1108
|
+
}
|
|
1109
|
+
]
|
|
1110
|
+
},
|
|
1111
|
+
"markup-include1727871607587": {
|
|
1112
|
+
"filters": [],
|
|
1113
|
+
"filterBehavior": "Filter Change",
|
|
1114
|
+
"openModal": false,
|
|
1115
|
+
"uid": "markup-include1727871607587",
|
|
1116
|
+
"type": "markup-include",
|
|
1117
|
+
"contentEditor": {
|
|
1118
|
+
"inlineHTML": "<div class=\"divboxbite\">\n\n<p class=\"bite-text\">In <span class=\"level\">{{state}}</span>, the wastewater viral activity level for RSV is currently <strong>\n<span class=\"level\">{{level}}</span>.\n</strong></p>\n<br/>\n<p class=\"bite-text\">\nSites reporting in the last week: {{week}}</br>\nSites reporting in the last 30 days: {{month}}</p>\n<br/>\n\n\n<div class=\"databite-graphic\">\n{{graphic}}\n</div>\n</div>",
|
|
1119
|
+
"showHeader": true,
|
|
1120
|
+
"srcUrl": "#example",
|
|
1121
|
+
"title": "",
|
|
1122
|
+
"useInlineHTML": true
|
|
1123
|
+
},
|
|
1124
|
+
"theme": "theme-blue",
|
|
1125
|
+
"visual": {
|
|
1126
|
+
"border": false,
|
|
1127
|
+
"accent": false,
|
|
1128
|
+
"background": false,
|
|
1129
|
+
"hideBackgroundColor": false,
|
|
1130
|
+
"borderColorTheme": false
|
|
1131
|
+
},
|
|
1132
|
+
"showEditorPanel": true,
|
|
1133
|
+
"visualizationType": "markup-include",
|
|
1134
|
+
"dataDescription": {
|
|
1135
|
+
"horizontal": false,
|
|
1136
|
+
"series": false
|
|
1137
|
+
},
|
|
1138
|
+
"dataKey": "All State/Territory Wastewater Viral Activity Levels",
|
|
1139
|
+
"version": "4.24.10",
|
|
1140
|
+
"markupVariables": [
|
|
1141
|
+
{
|
|
1142
|
+
"columnName": "graphic_url",
|
|
1143
|
+
"conditions": [],
|
|
1144
|
+
"name": "graphic",
|
|
1145
|
+
"tag": "{{graphic}}"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"columnName": "State/Territory",
|
|
1149
|
+
"conditions": [],
|
|
1150
|
+
"name": "state",
|
|
1151
|
+
"tag": "{{state}}"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"columnName": "WVAL_Category",
|
|
1155
|
+
"conditions": [],
|
|
1156
|
+
"name": "level",
|
|
1157
|
+
"tag": "{{level}}"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"columnName": "Sites_Last_Week",
|
|
1161
|
+
"conditions": [],
|
|
1162
|
+
"name": "week",
|
|
1163
|
+
"tag": "{{week}}"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"columnName": "Sites_Last_Month",
|
|
1167
|
+
"conditions": [],
|
|
1168
|
+
"name": "month",
|
|
1169
|
+
"tag": "{{month}}"
|
|
1170
|
+
}
|
|
1171
|
+
],
|
|
1172
|
+
"enableMarkupVariables": true
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
"table": {
|
|
1176
|
+
"label": "Data Table",
|
|
1177
|
+
"show": true,
|
|
1178
|
+
"showDownloadUrl": false,
|
|
1179
|
+
"showVertical": true,
|
|
1180
|
+
"download": false,
|
|
1181
|
+
"limitHeight": true,
|
|
1182
|
+
"height": "500"
|
|
1183
|
+
},
|
|
1184
|
+
"type": "dashboard",
|
|
1185
|
+
"version": "4.25.11",
|
|
1186
|
+
"uuid": 1728565459233,
|
|
1187
|
+
"migrations": {
|
|
1188
|
+
"addColorMigration": true
|
|
1189
|
+
},
|
|
1190
|
+
"general": {
|
|
1191
|
+
"palette": {
|
|
1192
|
+
"version": "1.0",
|
|
1193
|
+
"backups": [
|
|
1194
|
+
{
|
|
1195
|
+
"version": "1.0"
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"version": "1.0"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"version": "1.0"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"version": "1.0"
|
|
1205
|
+
}
|
|
1206
|
+
]
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1209
|
+
"datasets": {
|
|
1210
|
+
"Current Site Levels": {
|
|
1211
|
+
"dataFileSize": 120476,
|
|
1212
|
+
"dataFileName": "/wcms/vizdata/NCEZID_DIDRI/rsv/nwssrsvsitemap.json",
|
|
1213
|
+
"dataFileSourceType": "url",
|
|
1214
|
+
"dataFileFormat": "JSON",
|
|
1215
|
+
"preview": true,
|
|
1216
|
+
"dataUrl": "/wcms/vizdata/NCEZID_DIDRI/rsv/nwssrsvsitemap.json"
|
|
1217
|
+
},
|
|
1218
|
+
"Trend Over Time": {
|
|
1219
|
+
"dataFileSize": 3665382,
|
|
1220
|
+
"dataFileName": "/wcms/vizdata/NCEZID_DIDRI/rsv/nwssrsvstateactivitylevel.json",
|
|
1221
|
+
"dataFileSourceType": "url",
|
|
1222
|
+
"dataFileFormat": "JSON",
|
|
1223
|
+
"preview": false,
|
|
1224
|
+
"dataUrl": "/wcms/vizdata/NCEZID_DIDRI/rsv/nwssrsvstateactivitylevel.json"
|
|
1225
|
+
},
|
|
1226
|
+
"All State/Territory Wastewater Viral Activity Levels": {
|
|
1227
|
+
"dataFileSize": 24576,
|
|
1228
|
+
"dataFileName": "/wcms/vizdata/NCEZID_DIDRI/rsv/nwssrsvstatedatabites.json",
|
|
1229
|
+
"dataFileSourceType": "url",
|
|
1230
|
+
"dataFileFormat": "JSON",
|
|
1231
|
+
"preview": false,
|
|
1232
|
+
"dataUrl": "/wcms/vizdata/NCEZID_DIDRI/rsv/nwssrsvstatedatabites.json"
|
|
1233
|
+
}
|
|
1234
|
+
}
|
|
1235
|
+
}
|