@cdc/chart 4.25.11 → 4.26.2

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 (181) hide show
  1. package/CLAUDE.local.md +79 -0
  2. package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
  3. package/dist/cdcchart.js +51401 -50814
  4. package/examples/default.json +378 -0
  5. package/examples/feature/__data__/horizon-chart-data.json +373 -0
  6. package/examples/feature/annotations/index.json +3 -6
  7. package/examples/feature/horizon/horizon-chart.json +395 -0
  8. package/examples/feature/pie/planet-pie-example-config.json +48 -2
  9. package/examples/line-chart-states.json +1085 -0
  10. package/examples/private/123.json +694 -0
  11. package/examples/private/DEV-12100.json +1303 -0
  12. package/examples/private/anchor-issue.json +4094 -0
  13. package/examples/private/backwards-slider.json +10430 -0
  14. package/examples/private/cat-y.json +1235 -0
  15. package/examples/private/data-points.json +228 -0
  16. package/examples/private/georgia.csv +160 -0
  17. package/examples/private/height.json +3915 -0
  18. package/examples/private/links.json +569 -0
  19. package/examples/private/quadrant.txt +30 -0
  20. package/examples/private/test-forecast.json +5510 -0
  21. package/examples/private/timeline-data.json +1 -0
  22. package/examples/private/timeline.json +389 -0
  23. package/examples/private/warming-stripe-test.json +2578 -0
  24. package/examples/private/warming-stripes.json +4763 -0
  25. package/examples/radar-chart-simple.json +133 -0
  26. package/examples/radar-chart.json +148 -0
  27. package/examples/tech-adoption-with-links.json +560 -0
  28. package/index.html +1 -36
  29. package/package.json +59 -60
  30. package/src/CdcChartComponent.tsx +206 -89
  31. package/src/_stories/Chart.Anchors.stories.tsx +10 -0
  32. package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
  33. package/src/_stories/Chart.CI.stories.tsx +13 -0
  34. package/src/_stories/Chart.Combo.stories.tsx +17 -0
  35. package/src/_stories/Chart.CustomColors.stories.tsx +4 -0
  36. package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
  37. package/src/_stories/Chart.Filters.stories.tsx +4 -0
  38. package/src/_stories/Chart.Forecast.stories.tsx +4 -0
  39. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
  40. package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
  41. package/src/_stories/Chart.Patterns.stories.tsx +4 -0
  42. package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
  43. package/src/_stories/Chart.Regions.Categorical.stories.tsx +161 -0
  44. package/src/_stories/Chart.Regions.DateScale.stories.tsx +216 -0
  45. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +312 -0
  46. package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
  47. package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
  48. package/src/_stories/Chart.stories.tsx +45 -0
  49. package/src/_stories/Chart.tooltip.stories.tsx +7 -0
  50. package/src/_stories/ChartAnnotation.stories.tsx +10 -0
  51. package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
  52. package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
  53. package/src/_stories/ChartBar.Editor.stories.tsx +11 -6
  54. package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
  55. package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
  56. package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
  57. package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
  58. package/src/_stories/ChartBrush.stories.tsx +57 -0
  59. package/src/_stories/ChartEditor.Editor.stories.tsx +3 -5
  60. package/src/_stories/ChartEditor.stories.tsx +7 -0
  61. package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
  62. package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
  63. package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
  64. package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
  65. package/src/_stories/TechAdoptionWithLinks.stories.tsx +34 -0
  66. package/src/_stories/_mock/brush_continuous.json +86 -0
  67. package/src/_stories/_mock/brush_date_large.json +176 -0
  68. package/src/_stories/_mock/brush_enabled.json +326 -0
  69. package/src/_stories/_mock/brush_mock.json +2 -69
  70. package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
  71. package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
  72. package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
  73. package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
  74. package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
  75. package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
  76. package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
  77. package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
  78. package/src/components/Annotations/components/AnnotationDraggable.styles.css +11 -17
  79. package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
  80. package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
  81. package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
  82. package/src/components/Annotations/components/AnnotationList.styles.css +4 -10
  83. package/src/components/Annotations/components/AnnotationList.tsx +5 -4
  84. package/src/components/Annotations/components/findNearestDatum.ts +75 -85
  85. package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
  86. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +1 -2
  87. package/src/components/Axis/BottomAxis.tsx +270 -0
  88. package/src/components/Axis/Categorical.Axis.tsx +6 -7
  89. package/src/components/Axis/LeftAxis.tsx +404 -0
  90. package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
  91. package/src/components/Axis/PairedBarAxis.tsx +186 -0
  92. package/src/components/Axis/README.md +94 -0
  93. package/src/components/Axis/RightAxis.tsx +108 -0
  94. package/src/components/Axis/axis.constants.ts +21 -0
  95. package/src/components/Axis/index.ts +7 -0
  96. package/src/components/BarChart/components/BarChart.Horizontal.tsx +178 -24
  97. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
  98. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
  99. package/src/components/BarChart/components/BarChart.Vertical.tsx +6 -8
  100. package/src/components/BarChart/components/BarChart.tsx +7 -1
  101. package/src/components/BarChart/components/context.tsx +1 -0
  102. package/src/components/BarChart/helpers/useBarChart.ts +14 -2
  103. package/src/components/Brush/BrushSelector.tsx +1390 -0
  104. package/src/components/Brush/MiniChartPreview.tsx +400 -0
  105. package/src/components/DeviationBar.jsx +9 -7
  106. package/src/components/EditorPanel/EditorPanel.tsx +2734 -2595
  107. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +60 -22
  108. package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
  109. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +137 -30
  110. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +2 -0
  111. package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
  112. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +0 -1
  113. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +30 -25
  114. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +42 -28
  115. package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
  116. package/src/components/EditorPanel/useEditorPermissions.ts +81 -39
  117. package/src/components/HorizonChart/HorizonChart.tsx +131 -0
  118. package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
  119. package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
  120. package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
  121. package/src/components/HorizonChart/index.tsx +3 -0
  122. package/src/components/Legend/Legend.Component.tsx +52 -4
  123. package/src/components/Legend/Legend.tsx +4 -3
  124. package/src/components/Legend/LegendValueRange.tsx +77 -0
  125. package/src/components/Legend/helpers/createFormatLabels.tsx +164 -2
  126. package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
  127. package/src/components/Legend/helpers/index.ts +10 -6
  128. package/src/components/LineChart/helpers/README.md +292 -0
  129. package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
  130. package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
  131. package/src/components/LineChart/index.tsx +44 -8
  132. package/src/components/LinearChart/README.md +109 -0
  133. package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
  134. package/src/components/LinearChart/linearChart.constants.ts +84 -0
  135. package/src/components/LinearChart/tests/LinearChart.test.tsx +201 -0
  136. package/src/components/LinearChart/tests/mockConfigContext.ts +129 -0
  137. package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
  138. package/src/components/LinearChart.tsx +338 -1082
  139. package/src/components/PairedBarChart.jsx +20 -3
  140. package/src/components/PieChart/PieChart.tsx +1 -1
  141. package/src/components/RadarChart/RadarAxis.tsx +78 -0
  142. package/src/components/RadarChart/RadarChart.tsx +298 -0
  143. package/src/components/RadarChart/RadarGrid.tsx +64 -0
  144. package/src/components/RadarChart/RadarPolygon.tsx +91 -0
  145. package/src/components/RadarChart/helpers.ts +83 -0
  146. package/src/components/RadarChart/index.tsx +3 -0
  147. package/src/components/Regions/components/Regions.tsx +365 -122
  148. package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
  149. package/src/components/SmallMultiples/SmallMultipleTile.tsx +5 -1
  150. package/src/components/WarmingStripes/WarmingStripes.tsx +230 -0
  151. package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
  152. package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
  153. package/src/components/WarmingStripes/index.tsx +3 -0
  154. package/src/data/initial-state.js +17 -2
  155. package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
  156. package/src/helpers/getExcludedData.ts +4 -0
  157. package/src/helpers/getMinMax.ts +12 -7
  158. package/src/helpers/handleChartAriaLabels.ts +19 -19
  159. package/src/helpers/handleLineType.ts +22 -18
  160. package/src/helpers/sizeHelpers.ts +0 -20
  161. package/src/helpers/smallMultiplesHelpers.ts +1 -1
  162. package/src/hooks/useChartHoverAnalytics.tsx +10 -9
  163. package/src/hooks/useProgrammaticTooltip.ts +23 -2
  164. package/src/hooks/useScales.ts +18 -1
  165. package/src/hooks/useTooltip.tsx +34 -10
  166. package/src/scss/DataTable.scss +0 -4
  167. package/src/scss/main.scss +22 -3
  168. package/src/selectors/README.md +68 -0
  169. package/src/store/chart.reducer.ts +2 -0
  170. package/src/test/CdcChart.test.jsx +1 -1
  171. package/src/types/ChartConfig.ts +21 -0
  172. package/src/types/ChartContext.ts +1 -0
  173. package/src/types/Horizon.ts +64 -0
  174. package/src/types/Label.ts +1 -0
  175. package/src/utils/analyticsTracking.ts +19 -0
  176. package/LICENSE +0 -201
  177. package/src/components/Annotations/components/helpers/index.tsx +0 -46
  178. package/src/components/Brush/BrushChart.tsx +0 -128
  179. package/src/components/Brush/BrushController.tsx +0 -71
  180. package/src/components/Brush/types.tsx +0 -8
  181. package/src/components/BrushChart.tsx +0 -223
@@ -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
+ }