@cdc/chart 4.25.8 → 4.25.11

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 (145) hide show
  1. package/.claude/settings.local.json +9 -0
  2. package/dist/{cdcchart-1a1724a1.es.js → cdcchart-dgT_1dIT.es.js} +136 -151
  3. package/dist/cdcchart.js +44236 -40355
  4. package/examples/feature/__data__/planet-example-data.json +0 -30
  5. package/examples/feature/boxplot/valid-boxplot.csv +38 -17
  6. package/examples/grouped-bar-test.json +400 -0
  7. package/examples/private/DEV-11825.json +573 -0
  8. package/examples/private/d.json +382 -0
  9. package/examples/private/example-2.json +49784 -0
  10. package/examples/private/f2.json +1 -0
  11. package/examples/private/f4.json +1577 -0
  12. package/examples/private/forecast.json +1180 -0
  13. package/examples/private/lollipop.json +468 -0
  14. package/examples/private/na.json +913 -0
  15. package/examples/private/new.json +48756 -0
  16. package/examples/private/pie-chart-legend.json +904 -0
  17. package/examples/private/test-data.csv +28 -0
  18. package/examples/suppressed_tooltip.json +480 -0
  19. package/index.html +2 -133
  20. package/package.json +25 -7
  21. package/src/CdcChart.tsx +9 -13
  22. package/src/CdcChartComponent.tsx +403 -92
  23. package/src/_stories/Chart.Anchors.stories.tsx +2 -2
  24. package/src/_stories/Chart.BoxPlot.stories.tsx +1 -1
  25. package/src/_stories/Chart.CI.stories.tsx +1 -1
  26. package/src/_stories/Chart.Combo.stories.tsx +18 -0
  27. package/src/_stories/Chart.CustomColors.stories.tsx +1 -1
  28. package/src/_stories/Chart.DynamicSeries.stories.tsx +2 -2
  29. package/src/_stories/Chart.Filters.stories.tsx +2 -2
  30. package/src/_stories/Chart.Forecast.stories.tsx +36 -0
  31. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +520 -0
  32. package/src/_stories/Chart.Legend.Gradient.stories.tsx +2 -2
  33. package/src/_stories/Chart.Patterns.stories.tsx +20 -0
  34. package/src/_stories/Chart.PreserveDecimals.stories.tsx +220 -0
  35. package/src/_stories/Chart.ScatterPlot.stories.tsx +1 -1
  36. package/src/_stories/Chart.SmallMultiples.stories.tsx +47 -0
  37. package/src/_stories/Chart.stories.tsx +8 -5
  38. package/src/_stories/Chart.tooltip.stories.tsx +1 -1
  39. package/src/_stories/ChartAnnotation.stories.tsx +7 -4
  40. package/src/_stories/ChartAxisLabels.stories.tsx +2 -2
  41. package/src/_stories/ChartAxisTitles.stories.tsx +2 -2
  42. package/src/_stories/ChartBar.Editor.stories.tsx +3580 -0
  43. package/src/_stories/ChartEditor.Editor.stories.tsx +658 -0
  44. package/src/_stories/ChartEditor.stories.tsx +59 -60
  45. package/src/_stories/ChartLine.Suppression.stories.tsx +1 -1
  46. package/src/_stories/ChartLine.Symbols.stories.tsx +1 -1
  47. package/src/_stories/ChartPrefixSuffix.stories.tsx +2 -2
  48. package/src/_stories/_mock/combo.json +451 -0
  49. package/src/_stories/_mock/editor-test-configs.json +376 -0
  50. package/src/_stories/_mock/editor-test-datasets.json +477 -0
  51. package/src/_stories/_mock/editor-tests/bar-chart-editor-test.json +255 -0
  52. package/src/_stories/_mock/editor-tests/bar-chart-general-test.json +267 -0
  53. package/src/_stories/_mock/editor-tests/bar-chart-test.json +237 -0
  54. package/src/_stories/_mock/forecast_combo_with_gaps.json +913 -0
  55. package/src/_stories/_mock/pie_config.json +257 -62
  56. package/src/_stories/_mock/small_multiples/small_multiples_bars.json +1944 -0
  57. package/src/_stories/_mock/small_multiples/small_multiples_big_data_bars.json +1114 -0
  58. package/src/_stories/_mock/small_multiples/small_multiples_lines.json +2646 -0
  59. package/src/_stories/_mock/small_multiples/small_multiples_lines_colors.json +1305 -0
  60. package/src/_stories/_mock/small_multiples/small_multiples_stacked_bars.json +1936 -0
  61. package/src/_stories/_mock/stacked-pattern-test.json +520 -0
  62. package/src/components/Annotations/components/AnnotationDraggable.tsx +1 -0
  63. package/src/components/Annotations/components/AnnotationDropdown.tsx +1 -1
  64. package/src/components/Annotations/components/findNearestDatum.ts +6 -41
  65. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +10 -6
  66. package/src/components/AreaChart/index.tsx +1 -2
  67. package/src/components/BarChart/components/BarChart.Horizontal.tsx +161 -22
  68. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +138 -5
  69. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +215 -73
  70. package/src/components/BarChart/components/BarChart.Vertical.tsx +155 -22
  71. package/src/components/BarChart/helpers/index.ts +43 -4
  72. package/src/components/BarChart/helpers/lollipopColors.ts +27 -0
  73. package/src/components/BarChart/helpers/useBarChart.ts +25 -3
  74. package/src/components/BoxPlot/BoxPlot.Vertical.tsx +2 -1
  75. package/src/components/BoxPlot/helpers/index.ts +3 -3
  76. package/src/components/Brush/BrushChart.tsx +1 -1
  77. package/src/components/DeviationBar.jsx +9 -6
  78. package/src/components/EditorPanel/EditorPanel.tsx +563 -229
  79. package/src/components/EditorPanel/EditorPanelContext.ts +3 -0
  80. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +96 -111
  81. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +19 -1
  82. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +461 -0
  83. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +80 -67
  84. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +422 -0
  85. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +188 -139
  86. package/src/components/EditorPanel/components/Panels/index.tsx +5 -1
  87. package/src/components/EditorPanel/components/Panels/panelVisual.styles.css +0 -8
  88. package/src/components/EditorPanel/editor-panel.scss +0 -20
  89. package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +49 -48
  90. package/src/components/EditorPanel/useEditorPermissions.ts +7 -15
  91. package/src/components/Forecasting/Forecasting.tsx +175 -27
  92. package/src/components/ForestPlot/ForestPlot.tsx +11 -7
  93. package/src/components/ForestPlot/ForestPlotProps.ts +1 -1
  94. package/src/components/Legend/Legend.Component.tsx +114 -14
  95. package/src/components/Legend/helpers/createFormatLabels.tsx +230 -171
  96. package/src/components/Legend/helpers/getLegendClasses.ts +0 -1
  97. package/src/components/LegendWrapper.tsx +1 -1
  98. package/src/components/LineChart/LineChartProps.ts +0 -3
  99. package/src/components/LineChart/components/LineChart.Circle.tsx +2 -2
  100. package/src/components/LineChart/helpers.ts +1 -1
  101. package/src/components/LineChart/index.tsx +38 -15
  102. package/src/components/LinearChart.tsx +96 -84
  103. package/src/components/PairedBarChart.jsx +6 -4
  104. package/src/components/PieChart/PieChart.tsx +170 -54
  105. package/src/components/Regions/components/Regions.tsx +3 -24
  106. package/src/components/Sankey/components/Sankey.tsx +7 -1
  107. package/src/components/Sankey/types/index.ts +1 -1
  108. package/src/components/ScatterPlot/ScatterPlot.jsx +32 -4
  109. package/src/components/SmallMultiples/SmallMultipleTile.tsx +198 -0
  110. package/src/components/SmallMultiples/SmallMultiples.css +32 -0
  111. package/src/components/SmallMultiples/SmallMultiples.tsx +271 -0
  112. package/src/components/SmallMultiples/index.ts +2 -0
  113. package/src/data/initial-state.js +327 -293
  114. package/src/helpers/buildForecastPaletteMappings.ts +112 -0
  115. package/src/helpers/buildForecastPaletteOptions.ts +71 -0
  116. package/src/helpers/getColorScale.ts +82 -8
  117. package/src/{hooks/useMinMax.ts → helpers/getMinMax.ts} +14 -7
  118. package/src/helpers/getNewRuntime.ts +1 -1
  119. package/src/helpers/getTransformedData.ts +1 -1
  120. package/src/helpers/getYAxisAutoPadding.ts +53 -0
  121. package/src/helpers/smallMultiplesHelpers.ts +529 -0
  122. package/src/hooks/useChartHoverAnalytics.tsx +44 -0
  123. package/src/hooks/useProgrammaticTooltip.ts +96 -0
  124. package/src/hooks/useReduceData.ts +105 -70
  125. package/src/hooks/useScales.ts +88 -34
  126. package/src/hooks/useSmallMultipleSynchronization.ts +59 -0
  127. package/src/hooks/useTooltip.tsx +116 -29
  128. package/src/index.jsx +0 -2
  129. package/src/scss/main.scss +13 -80
  130. package/src/store/chart.actions.ts +2 -0
  131. package/src/store/chart.reducer.ts +5 -1
  132. package/src/test/CdcChart.test.jsx +8 -3
  133. package/src/types/ChartConfig.ts +53 -11
  134. package/src/types/ChartContext.ts +4 -0
  135. package/vite.config.js +1 -1
  136. package/vitest.config.ts +16 -0
  137. package/src/_stories/_mock/pie_data.json +0 -218
  138. package/src/components/AreaChart/components/AreaChart.jsx +0 -109
  139. package/src/coreStyles_chart.scss +0 -3
  140. package/src/helpers/configHelpers.ts +0 -28
  141. package/src/helpers/generateColorsArray.ts +0 -8
  142. package/src/helpers/sort.ts +0 -7
  143. package/src/hooks/useActiveElement.js +0 -19
  144. package/src/hooks/useChartClasses.js +0 -41
  145. package/src/hooks/useColorPalette.js +0 -76
@@ -0,0 +1,477 @@
1
+ {
2
+ "universal_test_data": [
3
+ {
4
+ "Date": "2020-01-15",
5
+ "State": "Alabama",
6
+ "Category": "Category A",
7
+ "Value": 156,
8
+ "Secondary_Value": 89,
9
+ "Percentage": 23.5,
10
+ "Count": 1560,
11
+ "Rate": 45.2,
12
+ "Gender": "Male",
13
+ "Age_Group": "18-24",
14
+ "Status": "Active"
15
+ },
16
+ {
17
+ "Date": "2020-02-15",
18
+ "State": "Alaska",
19
+ "Category": "Category B",
20
+ "Value": 234,
21
+ "Secondary_Value": 156,
22
+ "Percentage": 34.8,
23
+ "Count": 2340,
24
+ "Rate": 67.8,
25
+ "Gender": "Female",
26
+ "Age_Group": "25-34",
27
+ "Status": "Inactive"
28
+ },
29
+ {
30
+ "Date": "2020-03-15",
31
+ "State": "Arizona",
32
+ "Category": "Category A",
33
+ "Value": 189,
34
+ "Secondary_Value": 123,
35
+ "Percentage": 28.9,
36
+ "Count": 1890,
37
+ "Rate": 52.1,
38
+ "Gender": "Male",
39
+ "Age_Group": "35-44",
40
+ "Status": "Active"
41
+ },
42
+ {
43
+ "Date": "2020-04-15",
44
+ "State": "Arkansas",
45
+ "Category": "Category C",
46
+ "Value": 298,
47
+ "Secondary_Value": 201,
48
+ "Percentage": 42.3,
49
+ "Count": 2980,
50
+ "Rate": 78.9,
51
+ "Gender": "Female",
52
+ "Age_Group": "45-54",
53
+ "Status": "Pending"
54
+ },
55
+ {
56
+ "Date": "2020-05-15",
57
+ "State": "California",
58
+ "Category": "Category B",
59
+ "Value": 167,
60
+ "Secondary_Value": 98,
61
+ "Percentage": 31.2,
62
+ "Count": 1670,
63
+ "Rate": 43.8,
64
+ "Gender": "Male",
65
+ "Age_Group": "55-64",
66
+ "Status": "Active"
67
+ },
68
+ {
69
+ "Date": "2020-06-15",
70
+ "State": "Colorado",
71
+ "Category": "Category A",
72
+ "Value": 245,
73
+ "Secondary_Value": 178,
74
+ "Percentage": 38.7,
75
+ "Count": 2450,
76
+ "Rate": 61.2,
77
+ "Gender": "Female",
78
+ "Age_Group": "65+",
79
+ "Status": "Inactive"
80
+ },
81
+ {
82
+ "Date": "2020-07-15",
83
+ "State": "Connecticut",
84
+ "Category": "Category C",
85
+ "Value": 312,
86
+ "Secondary_Value": 234,
87
+ "Percentage": 45.9,
88
+ "Count": 3120,
89
+ "Rate": 87.3,
90
+ "Gender": "Male",
91
+ "Age_Group": "18-24",
92
+ "Status": "Active"
93
+ },
94
+ {
95
+ "Date": "2020-08-15",
96
+ "State": "Delaware",
97
+ "Category": "Category B",
98
+ "Value": 198,
99
+ "Secondary_Value": 134,
100
+ "Percentage": 33.6,
101
+ "Count": 1980,
102
+ "Rate": 54.7,
103
+ "Gender": "Female",
104
+ "Age_Group": "25-34",
105
+ "Status": "Pending"
106
+ },
107
+ {
108
+ "Date": "2020-09-15",
109
+ "State": "Florida",
110
+ "Category": "Category A",
111
+ "Value": 278,
112
+ "Secondary_Value": 189,
113
+ "Percentage": 41.1,
114
+ "Count": 2780,
115
+ "Rate": 73.4,
116
+ "Gender": "Male",
117
+ "Age_Group": "35-44",
118
+ "Status": "Active"
119
+ },
120
+ {
121
+ "Date": "2020-10-15",
122
+ "State": "Georgia",
123
+ "Category": "Category C",
124
+ "Value": 134,
125
+ "Secondary_Value": 87,
126
+ "Percentage": 26.8,
127
+ "Count": 1340,
128
+ "Rate": 38.9,
129
+ "Gender": "Female",
130
+ "Age_Group": "45-54",
131
+ "Status": "Inactive"
132
+ },
133
+ {
134
+ "Date": "2020-11-15",
135
+ "State": "Hawaii",
136
+ "Category": "Category B",
137
+ "Value": 356,
138
+ "Secondary_Value": 267,
139
+ "Percentage": 48.7,
140
+ "Count": 3560,
141
+ "Rate": 94.6,
142
+ "Gender": "Male",
143
+ "Age_Group": "55-64",
144
+ "Status": "Active"
145
+ },
146
+ {
147
+ "Date": "2020-12-15",
148
+ "State": "Idaho",
149
+ "Category": "Category A",
150
+ "Value": 223,
151
+ "Secondary_Value": 156,
152
+ "Percentage": 36.4,
153
+ "Count": 2230,
154
+ "Rate": 59.8,
155
+ "Gender": "Female",
156
+ "Age_Group": "65+",
157
+ "Status": "Pending"
158
+ }
159
+ ],
160
+
161
+ "boxplot_test_data": [
162
+ {
163
+ "Group_Category": "Group A",
164
+ "Value": 19,
165
+ "Additional_Info": "Sample 1"
166
+ },
167
+ {
168
+ "Group_Category": "Group A",
169
+ "Value": 21,
170
+ "Additional_Info": "Sample 2"
171
+ },
172
+ {
173
+ "Group_Category": "Group A",
174
+ "Value": 23,
175
+ "Additional_Info": "Sample 3"
176
+ },
177
+ {
178
+ "Group_Category": "Group A",
179
+ "Value": 24,
180
+ "Additional_Info": "Sample 4"
181
+ },
182
+ {
183
+ "Group_Category": "Group B",
184
+ "Value": 10,
185
+ "Additional_Info": "Sample 5"
186
+ },
187
+ {
188
+ "Group_Category": "Group B",
189
+ "Value": 12,
190
+ "Additional_Info": "Sample 6"
191
+ },
192
+ {
193
+ "Group_Category": "Group B",
194
+ "Value": 18,
195
+ "Additional_Info": "Sample 7"
196
+ },
197
+ {
198
+ "Group_Category": "Group B",
199
+ "Value": 19,
200
+ "Additional_Info": "Sample 8"
201
+ },
202
+ {
203
+ "Group_Category": "Group C",
204
+ "Value": 30,
205
+ "Additional_Info": "Sample 9"
206
+ },
207
+ {
208
+ "Group_Category": "Group C",
209
+ "Value": 35,
210
+ "Additional_Info": "Sample 10"
211
+ },
212
+ {
213
+ "Group_Category": "Group C",
214
+ "Value": 36,
215
+ "Additional_Info": "Sample 11"
216
+ },
217
+ {
218
+ "Group_Category": "Group C",
219
+ "Value": 46,
220
+ "Additional_Info": "Sample 12"
221
+ },
222
+ {
223
+ "Group_Category": "Group D",
224
+ "Value": 21,
225
+ "Additional_Info": "Sample 13"
226
+ },
227
+ {
228
+ "Group_Category": "Group D",
229
+ "Value": 30,
230
+ "Additional_Info": "Sample 14"
231
+ },
232
+ {
233
+ "Group_Category": "Group D",
234
+ "Value": 40,
235
+ "Additional_Info": "Sample 15"
236
+ },
237
+ {
238
+ "Group_Category": "Group D",
239
+ "Value": 41,
240
+ "Additional_Info": "Sample 16"
241
+ },
242
+ {
243
+ "Group_Category": "Group D",
244
+ "Value": 42,
245
+ "Additional_Info": "Sample 17"
246
+ },
247
+ {
248
+ "Group_Category": "Group D",
249
+ "Value": 43,
250
+ "Additional_Info": "Sample 18"
251
+ },
252
+ {
253
+ "Group_Category": "Group D",
254
+ "Value": 50,
255
+ "Additional_Info": "Sample 19"
256
+ },
257
+ {
258
+ "Group_Category": "Group D",
259
+ "Value": 50,
260
+ "Additional_Info": "Sample 20"
261
+ },
262
+ {
263
+ "Group_Category": "Group D",
264
+ "Value": 82,
265
+ "Additional_Info": "Sample 21"
266
+ },
267
+ {
268
+ "Group_Category": "Group D",
269
+ "Value": 85,
270
+ "Additional_Info": "Sample 22"
271
+ }
272
+ ],
273
+
274
+ "scatterplot_test_data": [
275
+ {
276
+ "X_Value": 12.5,
277
+ "Y_Value": 23.1,
278
+ "Size_Value": 150,
279
+ "Category": "Type A",
280
+ "Label": "Point 1"
281
+ },
282
+ {
283
+ "X_Value": 15.2,
284
+ "Y_Value": 31.8,
285
+ "Size_Value": 200,
286
+ "Category": "Type B",
287
+ "Label": "Point 2"
288
+ },
289
+ {
290
+ "X_Value": 18.7,
291
+ "Y_Value": 28.4,
292
+ "Size_Value": 175,
293
+ "Category": "Type A",
294
+ "Label": "Point 3"
295
+ },
296
+ {
297
+ "X_Value": 22.3,
298
+ "Y_Value": 45.6,
299
+ "Size_Value": 250,
300
+ "Category": "Type C",
301
+ "Label": "Point 4"
302
+ },
303
+ {
304
+ "X_Value": 26.1,
305
+ "Y_Value": 38.9,
306
+ "Size_Value": 180,
307
+ "Category": "Type B",
308
+ "Label": "Point 5"
309
+ },
310
+ {
311
+ "X_Value": 29.8,
312
+ "Y_Value": 52.3,
313
+ "Size_Value": 300,
314
+ "Category": "Type A",
315
+ "Label": "Point 6"
316
+ },
317
+ {
318
+ "X_Value": 33.4,
319
+ "Y_Value": 41.7,
320
+ "Size_Value": 220,
321
+ "Category": "Type C",
322
+ "Label": "Point 7"
323
+ },
324
+ {
325
+ "X_Value": 37.2,
326
+ "Y_Value": 58.2,
327
+ "Size_Value": 275,
328
+ "Category": "Type B",
329
+ "Label": "Point 8"
330
+ },
331
+ {
332
+ "X_Value": 41.6,
333
+ "Y_Value": 47.8,
334
+ "Size_Value": 190,
335
+ "Category": "Type A",
336
+ "Label": "Point 9"
337
+ },
338
+ {
339
+ "X_Value": 45.3,
340
+ "Y_Value": 63.1,
341
+ "Size_Value": 320,
342
+ "Category": "Type C",
343
+ "Label": "Point 10"
344
+ }
345
+ ],
346
+
347
+ "sankey_test_data": [
348
+ {
349
+ "links": [
350
+ {
351
+ "source": "Initial Population",
352
+ "target": "Screened",
353
+ "value": 10000
354
+ },
355
+ {
356
+ "source": "Initial Population",
357
+ "target": "Not Screened",
358
+ "value": 5000
359
+ },
360
+ {
361
+ "source": "Screened",
362
+ "target": "Positive Result",
363
+ "value": 1500
364
+ },
365
+ {
366
+ "source": "Screened",
367
+ "target": "Negative Result",
368
+ "value": 8500
369
+ },
370
+ {
371
+ "source": "Positive Result",
372
+ "target": "Treated",
373
+ "value": 1200
374
+ },
375
+ {
376
+ "source": "Positive Result",
377
+ "target": "Not Treated",
378
+ "value": 300
379
+ },
380
+ {
381
+ "source": "Treated",
382
+ "target": "Recovery",
383
+ "value": 1000
384
+ },
385
+ {
386
+ "source": "Treated",
387
+ "target": "No Recovery",
388
+ "value": 200
389
+ }
390
+ ]
391
+ }
392
+ ],
393
+
394
+ "forecasting_test_data": [
395
+ {
396
+ "Date": "2020-01-01",
397
+ "Actual_Value": 145,
398
+ "Lower_CI": 135,
399
+ "Upper_CI": 155,
400
+ "Forecast_Value": null,
401
+ "Forecast_Lower": null,
402
+ "Forecast_Upper": null
403
+ },
404
+ {
405
+ "Date": "2020-02-01",
406
+ "Actual_Value": 167,
407
+ "Lower_CI": 152,
408
+ "Upper_CI": 182,
409
+ "Forecast_Value": null,
410
+ "Forecast_Lower": null,
411
+ "Forecast_Upper": null
412
+ },
413
+ {
414
+ "Date": "2020-03-01",
415
+ "Actual_Value": 189,
416
+ "Lower_CI": 171,
417
+ "Upper_CI": 207,
418
+ "Forecast_Value": null,
419
+ "Forecast_Lower": null,
420
+ "Forecast_Upper": null
421
+ },
422
+ {
423
+ "Date": "2020-04-01",
424
+ "Actual_Value": 156,
425
+ "Lower_CI": 142,
426
+ "Upper_CI": 170,
427
+ "Forecast_Value": null,
428
+ "Forecast_Lower": null,
429
+ "Forecast_Upper": null
430
+ },
431
+ {
432
+ "Date": "2020-05-01",
433
+ "Actual_Value": 178,
434
+ "Lower_CI": 163,
435
+ "Upper_CI": 193,
436
+ "Forecast_Value": null,
437
+ "Forecast_Lower": null,
438
+ "Forecast_Upper": null
439
+ },
440
+ {
441
+ "Date": "2020-06-01",
442
+ "Actual_Value": 203,
443
+ "Lower_CI": 186,
444
+ "Upper_CI": 220,
445
+ "Forecast_Value": null,
446
+ "Forecast_Lower": null,
447
+ "Forecast_Upper": null
448
+ },
449
+ {
450
+ "Date": "2020-07-01",
451
+ "Actual_Value": null,
452
+ "Lower_CI": null,
453
+ "Upper_CI": null,
454
+ "Forecast_Value": 215,
455
+ "Forecast_Lower": 195,
456
+ "Forecast_Upper": 235
457
+ },
458
+ {
459
+ "Date": "2020-08-01",
460
+ "Actual_Value": null,
461
+ "Lower_CI": null,
462
+ "Upper_CI": null,
463
+ "Forecast_Value": 228,
464
+ "Forecast_Lower": 205,
465
+ "Forecast_Upper": 251
466
+ },
467
+ {
468
+ "Date": "2020-09-01",
469
+ "Actual_Value": null,
470
+ "Lower_CI": null,
471
+ "Upper_CI": null,
472
+ "Forecast_Value": 241,
473
+ "Forecast_Lower": 215,
474
+ "Forecast_Upper": 267
475
+ }
476
+ ]
477
+ }