@cdc/chart 4.25.7 → 4.25.10

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 (95) hide show
  1. package/.claude/settings.local.json +9 -0
  2. package/dist/cdcchart.js +39551 -37016
  3. package/examples/feature/__data__/planet-example-data.json +0 -30
  4. package/examples/grouped-bar-test.json +400 -0
  5. package/examples/private/d.json +382 -0
  6. package/examples/private/example-2.json +49784 -0
  7. package/examples/private/f2.json +1 -0
  8. package/examples/private/f4.json +1577 -0
  9. package/examples/private/forecast.json +1180 -0
  10. package/examples/private/lollipop.json +468 -0
  11. package/examples/private/new.json +48756 -0
  12. package/examples/private/pie-chart-legend.json +904 -0
  13. package/examples/suppressed_tooltip.json +480 -0
  14. package/index.html +10 -22
  15. package/package.json +25 -7
  16. package/src/CdcChart.tsx +10 -4
  17. package/src/CdcChartComponent.tsx +188 -32
  18. package/src/_stories/Chart.Anchors.stories.tsx +2 -2
  19. package/src/_stories/Chart.BoxPlot.stories.tsx +1 -1
  20. package/src/_stories/Chart.CI.stories.tsx +1 -1
  21. package/src/_stories/Chart.CustomColors.stories.tsx +1 -1
  22. package/src/_stories/Chart.DynamicSeries.stories.tsx +2 -2
  23. package/src/_stories/Chart.Filters.stories.tsx +2 -2
  24. package/src/_stories/Chart.Legend.Gradient.stories.tsx +2 -2
  25. package/src/_stories/Chart.Patterns.stories.tsx +19 -0
  26. package/src/_stories/Chart.ScatterPlot.stories.tsx +1 -1
  27. package/src/_stories/Chart.stories.tsx +8 -5
  28. package/src/_stories/Chart.tooltip.stories.tsx +1 -1
  29. package/src/_stories/ChartAnnotation.stories.tsx +1 -1
  30. package/src/_stories/ChartAxisLabels.stories.tsx +2 -2
  31. package/src/_stories/ChartAxisTitles.stories.tsx +2 -2
  32. package/src/_stories/ChartEditor.stories.tsx +60 -60
  33. package/src/_stories/ChartLine.Suppression.stories.tsx +1 -1
  34. package/src/_stories/ChartLine.Symbols.stories.tsx +1 -1
  35. package/src/_stories/ChartPrefixSuffix.stories.tsx +2 -2
  36. package/src/_stories/_mock/stacked-pattern-test.json +520 -0
  37. package/src/components/Annotations/components/AnnotationDraggable.tsx +1 -0
  38. package/src/components/Annotations/components/AnnotationDropdown.tsx +1 -1
  39. package/src/components/BarChart/components/BarChart.Horizontal.tsx +170 -25
  40. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +139 -6
  41. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +215 -73
  42. package/src/components/BarChart/components/BarChart.Vertical.tsx +172 -23
  43. package/src/components/BarChart/helpers/index.ts +43 -4
  44. package/src/components/BarChart/helpers/lollipopColors.ts +27 -0
  45. package/src/components/BarChart/helpers/useBarChart.ts +25 -3
  46. package/src/components/BoxPlot/BoxPlot.Vertical.tsx +2 -1
  47. package/src/components/Brush/BrushChart.tsx +65 -10
  48. package/src/components/Brush/BrushController.tsx +37 -5
  49. package/src/components/Brush/types.tsx +8 -0
  50. package/src/components/DeviationBar.jsx +9 -6
  51. package/src/components/EditorPanel/EditorPanel.tsx +364 -39
  52. package/src/components/EditorPanel/EditorPanelContext.ts +3 -0
  53. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +2 -2
  54. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +414 -0
  55. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +30 -54
  56. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +115 -120
  57. package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
  58. package/src/components/EditorPanel/components/Panels/panelVisual.styles.css +0 -8
  59. package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +49 -48
  60. package/src/components/Forecasting/Forecasting.tsx +36 -6
  61. package/src/components/ForestPlot/ForestPlot.tsx +11 -7
  62. package/src/components/ForestPlot/ForestPlotProps.ts +1 -1
  63. package/src/components/Legend/Legend.Component.tsx +110 -2
  64. package/src/components/Legend/Legend.tsx +3 -1
  65. package/src/components/Legend/helpers/createFormatLabels.tsx +230 -171
  66. package/src/components/LegendWrapper.tsx +1 -1
  67. package/src/components/LineChart/components/LineChart.BumpCircle.tsx +27 -26
  68. package/src/components/LineChart/components/LineChart.Circle.tsx +2 -2
  69. package/src/components/LineChart/index.tsx +2 -2
  70. package/src/components/LinearChart.tsx +26 -9
  71. package/src/components/PairedBarChart.jsx +6 -4
  72. package/src/components/PieChart/PieChart.tsx +170 -54
  73. package/src/components/Sankey/components/Sankey.tsx +7 -1
  74. package/src/components/ScatterPlot/ScatterPlot.jsx +32 -4
  75. package/src/data/initial-state.js +315 -292
  76. package/src/helpers/buildForecastPaletteMappings.ts +112 -0
  77. package/src/helpers/buildForecastPaletteOptions.ts +109 -0
  78. package/src/helpers/getColorScale.ts +72 -8
  79. package/src/helpers/getNewRuntime.ts +1 -1
  80. package/src/helpers/getTransformedData.ts +1 -1
  81. package/src/hooks/useChartHoverAnalytics.tsx +44 -0
  82. package/src/hooks/useReduceData.ts +105 -70
  83. package/src/hooks/useTooltip.tsx +58 -16
  84. package/src/index.jsx +6 -3
  85. package/src/scss/main.scss +12 -0
  86. package/src/store/chart.reducer.ts +1 -1
  87. package/src/test/CdcChart.test.jsx +8 -3
  88. package/src/types/ChartConfig.ts +30 -6
  89. package/src/types/ChartContext.ts +1 -0
  90. package/vite.config.js +1 -1
  91. package/vitest.config.ts +16 -0
  92. package/src/coreStyles_chart.scss +0 -3
  93. package/src/helpers/configHelpers.ts +0 -28
  94. package/src/helpers/generateColorsArray.ts +0 -8
  95. package/src/hooks/useColorPalette.js +0 -76
@@ -0,0 +1,1180 @@
1
+ {
2
+ "annotations": [],
3
+ "type": "chart",
4
+ "debugSvg": false,
5
+ "chartMessage": {
6
+ "noData": "No Data Available"
7
+ },
8
+ "title": "Example Forecast Chart",
9
+ "showTitle": true,
10
+ "showDownloadMediaButton": false,
11
+ "theme": "theme-blue",
12
+ "animate": false,
13
+ "fontSize": "medium",
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
16
+ "barHasBorder": "false",
17
+ "isLollipopChart": false,
18
+ "lollipopShape": "circle",
19
+ "lollipopColorStyle": "two-tone",
20
+ "visualizationSubType": "regular",
21
+ "barStyle": "",
22
+ "roundingStyle": "standard",
23
+ "tipRounding": "top",
24
+ "isResponsiveTicks": false,
25
+ "general": {
26
+ "annotationDropdownText": "Annotations",
27
+ "showMissingDataLabel": true,
28
+ "showSuppressedSymbol": true,
29
+ "showZeroValueData": true,
30
+ "hideNullValue": true
31
+ },
32
+ "padding": {
33
+ "left": 5,
34
+ "right": 5
35
+ },
36
+ "preliminaryData": [],
37
+ "yAxis": {
38
+ "hideAxis": false,
39
+ "displayNumbersOnBar": false,
40
+ "hideLabel": false,
41
+ "hideTicks": false,
42
+ "size": "75",
43
+ "gridLines": false,
44
+ "enablePadding": false,
45
+ "min": "",
46
+ "max": "1000",
47
+ "labelColor": "#1c1d1f",
48
+ "tickLabelColor": "#1c1d1f",
49
+ "tickColor": "#1c1d1f",
50
+ "rightHideAxis": true,
51
+ "rightAxisSize": 0,
52
+ "rightLabel": "",
53
+ "rightLabelOffsetSize": 0,
54
+ "rightAxisLabelColor": "#1c1d1f",
55
+ "rightAxisTickLabelColor": "#1c1d1f",
56
+ "rightAxisTickColor": "#1c1d1f",
57
+ "numTicks": "",
58
+ "axisPadding": 0,
59
+ "scalePadding": 10,
60
+ "tickRotation": 0,
61
+ "anchors": [],
62
+ "shoMissingDataLabel": true,
63
+ "showMissingDataLine": true,
64
+ "categories": [],
65
+ "label": "Cases",
66
+ "maxValue": "1000",
67
+ "labelOffset": "10"
68
+ },
69
+ "boxplot": {
70
+ "plots": [],
71
+ "borders": "true",
72
+ "plotOutlierValues": false,
73
+ "plotNonOutlierValues": true,
74
+ "labels": {
75
+ "q1": "Lower Quartile",
76
+ "q2": "q2",
77
+ "q3": "Upper Quartile",
78
+ "q4": "q4",
79
+ "minimum": "Minimum",
80
+ "maximum": "Maximum",
81
+ "mean": "Mean",
82
+ "median": "Median",
83
+ "sd": "Standard Deviation",
84
+ "iqr": "Interquartile Range",
85
+ "total": "Total",
86
+ "outliers": "Outliers",
87
+ "values": "Values",
88
+ "lowerBounds": "Lower Bounds",
89
+ "upperBounds": "Upper Bounds",
90
+ "count": "Count"
91
+ },
92
+ "firstQuartilePercentage": 25,
93
+ "thirdQuartilePercentage": 75,
94
+ "boxWidthPercentage": 40,
95
+ "legend": {
96
+ "showHowToReadText": false,
97
+ "howToReadText": ""
98
+ }
99
+ },
100
+ "topAxis": {
101
+ "hasLine": false
102
+ },
103
+ "isLegendValue": false,
104
+ "barThickness": 0.35,
105
+ "barHeight": 25,
106
+ "barSpace": 15,
107
+ "heights": {
108
+ "vertical": 300,
109
+ "horizontal": 750
110
+ },
111
+ "xAxis": {
112
+ "sortDates": false,
113
+ "anchors": [],
114
+ "type": "date",
115
+ "showTargetLabel": true,
116
+ "targetLabel": "Target",
117
+ "hideAxis": false,
118
+ "hideLabel": false,
119
+ "hideTicks": false,
120
+ "size": "20",
121
+ "tickRotation": "25",
122
+ "min": "",
123
+ "max": "",
124
+ "labelColor": "#1c1d1f",
125
+ "tickLabelColor": "#1c1d1f",
126
+ "tickColor": "#1c1d1f",
127
+ "numTicks": "4",
128
+ "labelOffset": 0,
129
+ "axisPadding": 0,
130
+ "target": 0,
131
+ "maxTickRotation": 0,
132
+ "padding": 6,
133
+ "showYearsOnce": false,
134
+ "sortByRecentDate": false,
135
+ "brushActive": false,
136
+ "dataKey": "Date",
137
+ "dateParseFormat": "%m/%d/%Y",
138
+ "dateDisplayFormat": "%m/%d/%Y",
139
+ "label": "Date",
140
+ "axisBBox": 0,
141
+ "tickWidthMax": 66
142
+ },
143
+ "table": {
144
+ "label": "Data Table",
145
+ "expanded": false,
146
+ "limitHeight": false,
147
+ "height": "",
148
+ "caption": "",
149
+ "showDownloadUrl": false,
150
+ "showDataTableLink": true,
151
+ "showDownloadLinkBelow": true,
152
+ "indexLabel": "Date",
153
+ "download": true,
154
+ "showVertical": true,
155
+ "dateDisplayFormat": "",
156
+ "showMissingDataLabel": true,
157
+ "showSuppressedSymbol": true,
158
+ "collapsible": true,
159
+ "show": true
160
+ },
161
+ "orientation": "vertical",
162
+ "color": "pinkpurple",
163
+ "columns": {
164
+ "additionalColumn1": {
165
+ "label": "Lower 90%",
166
+ "dataTable": true,
167
+ "tooltips": false,
168
+ "prefix": "",
169
+ "suffix": "",
170
+ "forestPlot": false,
171
+ "startingPoint": "0",
172
+ "forestPlotAlignRight": false,
173
+ "name": "Lower 90%"
174
+ },
175
+ "additionalColumn2": {
176
+ "label": "Upper 90%",
177
+ "dataTable": true,
178
+ "tooltips": false,
179
+ "prefix": "",
180
+ "suffix": "",
181
+ "forestPlot": false,
182
+ "startingPoint": "0",
183
+ "forestPlotAlignRight": false,
184
+ "name": "Upper 90%"
185
+ }
186
+ },
187
+ "legend": {
188
+ "hide": false,
189
+ "behavior": "isolate",
190
+ "axisAlign": true,
191
+ "singleRow": false,
192
+ "colorCode": "",
193
+ "reverseLabelOrder": false,
194
+ "description": "",
195
+ "dynamicLegend": false,
196
+ "dynamicLegendDefaultText": "Show All",
197
+ "dynamicLegendItemLimit": 5,
198
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
199
+ "dynamicLegendChartMessage": "Select Options from the Legend",
200
+ "label": "Timeline Stage",
201
+ "lineMode": false,
202
+ "verticalSorted": false,
203
+ "highlightOnHover": false,
204
+ "hideSuppressedLabels": false,
205
+ "hideSuppressionLink": false,
206
+ "seriesHighlight": [],
207
+ "style": "circles",
208
+ "subStyle": "linear blocks",
209
+ "groupBy": "",
210
+ "shape": "circle",
211
+ "tickRotation": "",
212
+ "order": "dataColumn",
213
+ "hideBorder": {
214
+ "side": false,
215
+ "topBottom": true
216
+ },
217
+ "position": "right",
218
+ "orderedValues": [],
219
+ "unified": true
220
+ },
221
+ "brush": {
222
+ "height": 25,
223
+ "active": false,
224
+ "pattern_id": "brush_pattern",
225
+ "accent_color": "#ddd"
226
+ },
227
+ "exclusions": {
228
+ "active": false,
229
+ "keys": []
230
+ },
231
+ "palette": "qualitative-bold",
232
+ "isPaletteReversed": false,
233
+ "twoColor": {
234
+ "palette": "monochrome-1",
235
+ "isPaletteReversed": false
236
+ },
237
+ "labels": false,
238
+ "dataFormat": {
239
+ "commas": false,
240
+ "prefix": "",
241
+ "suffix": "",
242
+ "abbreviated": false,
243
+ "bottomSuffix": "",
244
+ "bottomPrefix": "",
245
+ "bottomAbbreviated": false
246
+ },
247
+ "confidenceKeys": {},
248
+ "visual": {
249
+ "border": true,
250
+ "accent": true,
251
+ "background": true,
252
+ "verticalHoverLine": false,
253
+ "horizontalHoverLine": false,
254
+ "lineDatapointSymbol": "none",
255
+ "maximumShapeAmount": 7
256
+ },
257
+ "useLogScale": false,
258
+ "filterBehavior": "Filter Change",
259
+ "highlightedBarValues": [],
260
+ "series": [
261
+ {
262
+ "dataKey": "Timeline Stage",
263
+ "type": "Forecasting",
264
+ "stages": [
265
+ {
266
+ "key": "Estimate",
267
+ "color": "sequential-bluereverse"
268
+ },
269
+ {
270
+ "key": "Estimate Based on Partial Data",
271
+ "color": "sequential-greenreverse"
272
+ },
273
+ {
274
+ "key": "Forecast",
275
+ "color": "sequential-orange-(MPX)reverse"
276
+ }
277
+ ],
278
+ "stageColumn": "Timeline Stage",
279
+ "axis": "Left",
280
+ "tooltip": true,
281
+ "confidenceIntervals": [
282
+ {
283
+ "high": "Upper 90%",
284
+ "low": "Lower 90%",
285
+ "showInTooltip": true
286
+ }
287
+ ]
288
+ }
289
+ ],
290
+ "tooltips": {
291
+ "opacity": 90,
292
+ "singleSeries": false,
293
+ "dateDisplayFormat": ""
294
+ },
295
+ "forestPlot": {
296
+ "startAt": 0,
297
+ "colors": {
298
+ "line": "",
299
+ "shape": ""
300
+ },
301
+ "lineOfNoEffect": {
302
+ "show": true
303
+ },
304
+ "type": "",
305
+ "pooledResult": {
306
+ "diamondHeight": 5,
307
+ "column": ""
308
+ },
309
+ "estimateField": "",
310
+ "estimateRadius": "",
311
+ "shape": "",
312
+ "rowHeight": 20,
313
+ "description": {
314
+ "show": true,
315
+ "text": "description",
316
+ "location": 0
317
+ },
318
+ "result": {
319
+ "show": true,
320
+ "text": "result",
321
+ "location": 100
322
+ },
323
+ "radius": {
324
+ "min": 1,
325
+ "max": 8,
326
+ "scalingColumn": ""
327
+ },
328
+ "regression": {
329
+ "lower": 0,
330
+ "upper": 0,
331
+ "estimateField": 0
332
+ },
333
+ "leftWidthOffset": 0,
334
+ "rightWidthOffset": 0,
335
+ "showZeroLine": false,
336
+ "leftLabel": "",
337
+ "rightLabel": "",
338
+ "width": "auto",
339
+ "lowerCiField": "",
340
+ "upperCiField": ""
341
+ },
342
+ "area": {
343
+ "isStacked": false
344
+ },
345
+ "sankey": {
346
+ "title": {
347
+ "defaultColor": "black"
348
+ },
349
+ "iterations": 1,
350
+ "rxValue": 0.9,
351
+ "overallSize": {
352
+ "width": 900,
353
+ "height": 700
354
+ },
355
+ "margin": {
356
+ "margin_y": 25,
357
+ "margin_x": 0
358
+ },
359
+ "nodeSize": {
360
+ "nodeWidth": 26,
361
+ "nodeHeight": 40
362
+ },
363
+ "nodePadding": 55,
364
+ "nodeFontColor": "black",
365
+ "nodeColor": {
366
+ "default": "#ff8500",
367
+ "inactive": "#808080"
368
+ },
369
+ "linkColor": {
370
+ "default": "#ffc900",
371
+ "inactive": "#D3D3D3"
372
+ },
373
+ "opacity": {
374
+ "nodeOpacityDefault": 1,
375
+ "nodeOpacityInactive": 0.1,
376
+ "LinkOpacityDefault": 1,
377
+ "LinkOpacityInactive": 0.1
378
+ },
379
+ "storyNodeFontColor": "#006778",
380
+ "storyNodeText": [],
381
+ "nodeValueStyle": {
382
+ "textBefore": "(",
383
+ "textAfter": ")"
384
+ },
385
+ "data": []
386
+ },
387
+ "showChartBrush": false,
388
+ "datasets": {},
389
+ "visualizationType": "Forecasting",
390
+ "data": [
391
+ {
392
+ "Date": "6/20/2022",
393
+ "Timeline Stage": "Estimate",
394
+ "Lower 90%": "10",
395
+ "Upper 90%": "36"
396
+ },
397
+ {
398
+ "Date": "6/21/2022",
399
+ "Timeline Stage": "Estimate",
400
+ "Lower 90%": "13",
401
+ "Upper 90%": "45"
402
+ },
403
+ {
404
+ "Date": "6/22/2022",
405
+ "Timeline Stage": "Estimate",
406
+ "Lower 90%": "13",
407
+ "Upper 90%": "44"
408
+ },
409
+ {
410
+ "Date": "6/23/2022",
411
+ "Timeline Stage": "Estimate",
412
+ "Lower 90%": "15",
413
+ "Upper 90%": "53"
414
+ },
415
+ {
416
+ "Date": "6/24/2022",
417
+ "Timeline Stage": "Estimate",
418
+ "Lower 90%": "16",
419
+ "Upper 90%": "54"
420
+ },
421
+ {
422
+ "Date": "6/25/2022",
423
+ "Timeline Stage": "Estimate",
424
+ "Lower 90%": "6",
425
+ "Upper 90%": "25"
426
+ },
427
+ {
428
+ "Date": "6/26/2022",
429
+ "Timeline Stage": "Estimate",
430
+ "Lower 90%": "4",
431
+ "Upper 90%": "19"
432
+ },
433
+ {
434
+ "Date": "6/27/2022",
435
+ "Timeline Stage": "Estimate",
436
+ "Lower 90%": "22",
437
+ "Upper 90%": "72"
438
+ },
439
+ {
440
+ "Date": "6/28/2022",
441
+ "Timeline Stage": "Estimate",
442
+ "Lower 90%": "29",
443
+ "Upper 90%": "88"
444
+ },
445
+ {
446
+ "Date": "6/29/2022",
447
+ "Timeline Stage": "Estimate",
448
+ "Lower 90%": "27",
449
+ "Upper 90%": "83"
450
+ },
451
+ {
452
+ "Date": "6/30/2022",
453
+ "Timeline Stage": "Estimate",
454
+ "Lower 90%": "33",
455
+ "Upper 90%": "97"
456
+ },
457
+ {
458
+ "Date": "7/1/2022",
459
+ "Timeline Stage": "Estimate",
460
+ "Lower 90%": "32",
461
+ "Upper 90%": "98"
462
+ },
463
+ {
464
+ "Date": "7/2/2022",
465
+ "Timeline Stage": "Estimate",
466
+ "Lower 90%": "12",
467
+ "Upper 90%": "45"
468
+ },
469
+ {
470
+ "Date": "7/3/2022",
471
+ "Timeline Stage": "Estimate",
472
+ "Lower 90%": "9",
473
+ "Upper 90%": "33"
474
+ },
475
+ {
476
+ "Date": "7/4/2022",
477
+ "Timeline Stage": "Estimate",
478
+ "Lower 90%": "45",
479
+ "Upper 90%": "135"
480
+ },
481
+ {
482
+ "Date": "7/5/2022",
483
+ "Timeline Stage": "Estimate",
484
+ "Lower 90%": "54",
485
+ "Upper 90%": "163"
486
+ },
487
+ {
488
+ "Date": "7/6/2022",
489
+ "Timeline Stage": "Estimate",
490
+ "Lower 90%": "51",
491
+ "Upper 90%": "151"
492
+ },
493
+ {
494
+ "Date": "7/7/2022",
495
+ "Timeline Stage": "Estimate",
496
+ "Lower 90%": "64",
497
+ "Upper 90%": "183"
498
+ },
499
+ {
500
+ "Date": "7/8/2022",
501
+ "Timeline Stage": "Estimate",
502
+ "Lower 90%": "63",
503
+ "Upper 90%": "181"
504
+ },
505
+ {
506
+ "Date": "7/9/2022",
507
+ "Timeline Stage": "Estimate",
508
+ "Lower 90%": "25",
509
+ "Upper 90%": "80"
510
+ },
511
+ {
512
+ "Date": "7/10/2022",
513
+ "Timeline Stage": "Estimate",
514
+ "Lower 90%": "18",
515
+ "Upper 90%": "62"
516
+ },
517
+ {
518
+ "Date": "7/11/2022",
519
+ "Timeline Stage": "Estimate",
520
+ "Lower 90%": "84",
521
+ "Upper 90%": "248"
522
+ },
523
+ {
524
+ "Date": "7/12/2022",
525
+ "Timeline Stage": "Estimate",
526
+ "Lower 90%": "105",
527
+ "Upper 90%": "301"
528
+ },
529
+ {
530
+ "Date": "7/13/2022",
531
+ "Timeline Stage": "Estimate",
532
+ "Lower 90%": "95",
533
+ "Upper 90%": "281"
534
+ },
535
+ {
536
+ "Date": "7/14/2022",
537
+ "Timeline Stage": "Estimate",
538
+ "Lower 90%": "115",
539
+ "Upper 90%": "339"
540
+ },
541
+ {
542
+ "Date": "7/15/2022",
543
+ "Timeline Stage": "Estimate",
544
+ "Lower 90%": "114",
545
+ "Upper 90%": "319"
546
+ },
547
+ {
548
+ "Date": "7/16/2022",
549
+ "Timeline Stage": "Estimate",
550
+ "Lower 90%": "47",
551
+ "Upper 90%": "140"
552
+ },
553
+ {
554
+ "Date": "7/17/2022",
555
+ "Timeline Stage": "Estimate",
556
+ "Lower 90%": "33",
557
+ "Upper 90%": "104"
558
+ },
559
+ {
560
+ "Date": "7/18/2022",
561
+ "Timeline Stage": "Estimate",
562
+ "Lower 90%": "148",
563
+ "Upper 90%": "419"
564
+ },
565
+ {
566
+ "Date": "7/19/2022",
567
+ "Timeline Stage": "Estimate",
568
+ "Lower 90%": "176",
569
+ "Upper 90%": "489"
570
+ },
571
+ {
572
+ "Date": "7/20/2022",
573
+ "Timeline Stage": "Estimate",
574
+ "Lower 90%": "160",
575
+ "Upper 90%": "466"
576
+ },
577
+ {
578
+ "Date": "7/21/2022",
579
+ "Timeline Stage": "Estimate",
580
+ "Lower 90%": "194",
581
+ "Upper 90%": "536"
582
+ },
583
+ {
584
+ "Date": "7/22/2022",
585
+ "Timeline Stage": "Estimate",
586
+ "Lower 90%": "182",
587
+ "Upper 90%": "506"
588
+ },
589
+ {
590
+ "Date": "7/23/2022",
591
+ "Timeline Stage": "Estimate",
592
+ "Lower 90%": "74",
593
+ "Upper 90%": "213"
594
+ },
595
+ {
596
+ "Date": "7/24/2022",
597
+ "Timeline Stage": "Estimate",
598
+ "Lower 90%": "53",
599
+ "Upper 90%": "156"
600
+ },
601
+ {
602
+ "Date": "7/25/2022",
603
+ "Timeline Stage": "Estimate",
604
+ "Lower 90%": "214",
605
+ "Upper 90%": "619"
606
+ },
607
+ {
608
+ "Date": "7/26/2022",
609
+ "Timeline Stage": "Estimate",
610
+ "Lower 90%": "268",
611
+ "Upper 90%": "734"
612
+ },
613
+ {
614
+ "Date": "7/27/2022",
615
+ "Timeline Stage": "Estimate",
616
+ "Lower 90%": "231",
617
+ "Upper 90%": "650"
618
+ },
619
+ {
620
+ "Date": "7/28/2022",
621
+ "Timeline Stage": "Estimate",
622
+ "Lower 90%": "267",
623
+ "Upper 90%": "724"
624
+ },
625
+ {
626
+ "Date": "7/29/2022",
627
+ "Timeline Stage": "Estimate",
628
+ "Lower 90%": "249",
629
+ "Upper 90%": "685"
630
+ },
631
+ {
632
+ "Date": "7/30/2022",
633
+ "Timeline Stage": "Estimate",
634
+ "Lower 90%": "101",
635
+ "Upper 90%": "284"
636
+ },
637
+ {
638
+ "Date": "7/31/2022",
639
+ "Timeline Stage": "Estimate",
640
+ "Lower 90%": "69",
641
+ "Upper 90%": "205"
642
+ },
643
+ {
644
+ "Date": "8/1/2022",
645
+ "Timeline Stage": "Estimate",
646
+ "Lower 90%": "277",
647
+ "Upper 90%": "790"
648
+ },
649
+ {
650
+ "Date": "8/2/2022",
651
+ "Timeline Stage": "Estimate",
652
+ "Lower 90%": "331",
653
+ "Upper 90%": "897"
654
+ },
655
+ {
656
+ "Date": "8/3/2022",
657
+ "Timeline Stage": "Estimate",
658
+ "Lower 90%": "291",
659
+ "Upper 90%": "792"
660
+ },
661
+ {
662
+ "Date": "8/4/2022",
663
+ "Timeline Stage": "Estimate",
664
+ "Lower 90%": "329",
665
+ "Upper 90%": "899"
666
+ },
667
+ {
668
+ "Date": "8/5/2022",
669
+ "Timeline Stage": "Estimate",
670
+ "Lower 90%": "288",
671
+ "Upper 90%": "814"
672
+ },
673
+ {
674
+ "Date": "8/6/2022",
675
+ "Timeline Stage": "Estimate",
676
+ "Lower 90%": "116",
677
+ "Upper 90%": "328"
678
+ },
679
+ {
680
+ "Date": "8/7/2022",
681
+ "Timeline Stage": "Estimate",
682
+ "Lower 90%": "77",
683
+ "Upper 90%": "225"
684
+ },
685
+ {
686
+ "Date": "8/8/2022",
687
+ "Timeline Stage": "Estimate",
688
+ "Lower 90%": "315",
689
+ "Upper 90%": "869"
690
+ },
691
+ {
692
+ "Date": "8/9/2022",
693
+ "Timeline Stage": "Estimate",
694
+ "Lower 90%": "349",
695
+ "Upper 90%": "979"
696
+ },
697
+ {
698
+ "Date": "8/10/2022",
699
+ "Timeline Stage": "Estimate",
700
+ "Lower 90%": "304",
701
+ "Upper 90%": "839"
702
+ },
703
+ {
704
+ "Date": "8/11/2022",
705
+ "Timeline Stage": "Estimate",
706
+ "Lower 90%": "323",
707
+ "Upper 90%": "912"
708
+ },
709
+ {
710
+ "Date": "8/12/2022",
711
+ "Timeline Stage": "Estimate",
712
+ "Lower 90%": "303",
713
+ "Upper 90%": "820"
714
+ },
715
+ {
716
+ "Date": "8/13/2022",
717
+ "Timeline Stage": "Estimate",
718
+ "Lower 90%": "112",
719
+ "Upper 90%": "322"
720
+ },
721
+ {
722
+ "Date": "8/14/2022",
723
+ "Timeline Stage": "Estimate",
724
+ "Lower 90%": "79",
725
+ "Upper 90%": "223"
726
+ },
727
+ {
728
+ "Date": "8/15/2022",
729
+ "Timeline Stage": "Estimate",
730
+ "Lower 90%": "311",
731
+ "Upper 90%": "859"
732
+ },
733
+ {
734
+ "Date": "8/16/2022",
735
+ "Timeline Stage": "Estimate",
736
+ "Lower 90%": "334",
737
+ "Upper 90%": "924"
738
+ },
739
+ {
740
+ "Date": "8/17/2022",
741
+ "Timeline Stage": "Estimate",
742
+ "Lower 90%": "284",
743
+ "Upper 90%": "801"
744
+ },
745
+ {
746
+ "Date": "8/18/2022",
747
+ "Timeline Stage": "Estimate",
748
+ "Lower 90%": "309",
749
+ "Upper 90%": "845"
750
+ },
751
+ {
752
+ "Date": "8/19/2022",
753
+ "Timeline Stage": "Estimate",
754
+ "Lower 90%": "281",
755
+ "Upper 90%": "754"
756
+ },
757
+ {
758
+ "Date": "8/20/2022",
759
+ "Timeline Stage": "Estimate",
760
+ "Lower 90%": "104",
761
+ "Upper 90%": "297"
762
+ },
763
+ {
764
+ "Date": "8/21/2022",
765
+ "Timeline Stage": "Estimate",
766
+ "Lower 90%": "72",
767
+ "Upper 90%": "208"
768
+ },
769
+ {
770
+ "Date": "8/22/2022",
771
+ "Timeline Stage": "Estimate",
772
+ "Lower 90%": "273",
773
+ "Upper 90%": "754"
774
+ },
775
+ {
776
+ "Date": "8/23/2022",
777
+ "Timeline Stage": "Estimate",
778
+ "Lower 90%": "291",
779
+ "Upper 90%": "830"
780
+ },
781
+ {
782
+ "Date": "8/24/2022",
783
+ "Timeline Stage": "Estimate",
784
+ "Lower 90%": "252",
785
+ "Upper 90%": "702"
786
+ },
787
+ {
788
+ "Date": "8/25/2022",
789
+ "Timeline Stage": "Estimate",
790
+ "Lower 90%": "263",
791
+ "Upper 90%": "754"
792
+ },
793
+ {
794
+ "Date": "8/26/2022",
795
+ "Timeline Stage": "Estimate",
796
+ "Lower 90%": "236",
797
+ "Upper 90%": "663"
798
+ },
799
+ {
800
+ "Date": "8/27/2022",
801
+ "Timeline Stage": "Estimate",
802
+ "Lower 90%": "89",
803
+ "Upper 90%": "256"
804
+ },
805
+ {
806
+ "Date": "8/28/2022",
807
+ "Timeline Stage": "Estimate",
808
+ "Lower 90%": "59",
809
+ "Upper 90%": "170"
810
+ },
811
+ {
812
+ "Date": "8/29/2022",
813
+ "Timeline Stage": "Estimate",
814
+ "Lower 90%": "233",
815
+ "Upper 90%": "627"
816
+ },
817
+ {
818
+ "Date": "8/30/2022",
819
+ "Timeline Stage": "Estimate",
820
+ "Lower 90%": "247",
821
+ "Upper 90%": "694"
822
+ },
823
+ {
824
+ "Date": "8/31/2022",
825
+ "Timeline Stage": "Estimate",
826
+ "Lower 90%": "208",
827
+ "Upper 90%": "584"
828
+ },
829
+ {
830
+ "Date": "9/1/2022",
831
+ "Timeline Stage": "Estimate",
832
+ "Lower 90%": "227",
833
+ "Upper 90%": "634"
834
+ },
835
+ {
836
+ "Date": "9/2/2022",
837
+ "Timeline Stage": "Estimate",
838
+ "Lower 90%": "194",
839
+ "Upper 90%": "552"
840
+ },
841
+ {
842
+ "Date": "9/3/2022",
843
+ "Timeline Stage": "Estimate",
844
+ "Lower 90%": "74",
845
+ "Upper 90%": "210"
846
+ },
847
+ {
848
+ "Date": "9/4/2022",
849
+ "Timeline Stage": "Estimate",
850
+ "Lower 90%": "46",
851
+ "Upper 90%": "143"
852
+ },
853
+ {
854
+ "Date": "9/5/2022",
855
+ "Timeline Stage": "Estimate",
856
+ "Lower 90%": "188",
857
+ "Upper 90%": "529"
858
+ },
859
+ {
860
+ "Date": "9/6/2022",
861
+ "Timeline Stage": "Estimate",
862
+ "Lower 90%": "207",
863
+ "Upper 90%": "565"
864
+ },
865
+ {
866
+ "Date": "9/7/2022",
867
+ "Timeline Stage": "Estimate",
868
+ "Lower 90%": "173",
869
+ "Upper 90%": "478"
870
+ },
871
+ {
872
+ "Date": "9/8/2022",
873
+ "Timeline Stage": "Estimate",
874
+ "Lower 90%": "185",
875
+ "Upper 90%": "509"
876
+ },
877
+ {
878
+ "Date": "9/9/2022",
879
+ "Timeline Stage": "Estimate",
880
+ "Lower 90%": "162",
881
+ "Upper 90%": "448"
882
+ },
883
+ {
884
+ "Date": "9/10/2022",
885
+ "Timeline Stage": "Estimate",
886
+ "Lower 90%": "58",
887
+ "Upper 90%": "168"
888
+ },
889
+ {
890
+ "Date": "9/11/2022",
891
+ "Timeline Stage": "Estimate",
892
+ "Lower 90%": "38",
893
+ "Upper 90%": "114"
894
+ },
895
+ {
896
+ "Date": "9/12/2022",
897
+ "Timeline Stage": "Estimate",
898
+ "Lower 90%": "154",
899
+ "Upper 90%": "424"
900
+ },
901
+ {
902
+ "Date": "9/13/2022",
903
+ "Timeline Stage": "Estimate",
904
+ "Lower 90%": "173",
905
+ "Upper 90%": "454"
906
+ },
907
+ {
908
+ "Date": "9/14/2022",
909
+ "Timeline Stage": "Estimate",
910
+ "Lower 90%": "137",
911
+ "Upper 90%": "378"
912
+ },
913
+ {
914
+ "Date": "9/15/2022",
915
+ "Timeline Stage": "Estimate",
916
+ "Lower 90%": "144",
917
+ "Upper 90%": "416"
918
+ },
919
+ {
920
+ "Date": "9/16/2022",
921
+ "Timeline Stage": "Estimate",
922
+ "Lower 90%": "129",
923
+ "Upper 90%": "350"
924
+ },
925
+ {
926
+ "Date": "9/17/2022",
927
+ "Timeline Stage": "Estimate",
928
+ "Lower 90%": "47",
929
+ "Upper 90%": "144"
930
+ },
931
+ {
932
+ "Date": "9/18/2022",
933
+ "Timeline Stage": "Estimate",
934
+ "Lower 90%": "31",
935
+ "Upper 90%": "91"
936
+ },
937
+ {
938
+ "Date": "9/19/2022",
939
+ "Timeline Stage": "Estimate",
940
+ "Lower 90%": "121",
941
+ "Upper 90%": "344"
942
+ },
943
+ {
944
+ "Date": "9/20/2022",
945
+ "Timeline Stage": "Estimate",
946
+ "Lower 90%": "132",
947
+ "Upper 90%": "372"
948
+ },
949
+ {
950
+ "Date": "9/21/2022",
951
+ "Timeline Stage": "Estimate",
952
+ "Lower 90%": "107",
953
+ "Upper 90%": "304"
954
+ },
955
+ {
956
+ "Date": "9/22/2022",
957
+ "Timeline Stage": "Estimate",
958
+ "Lower 90%": "112",
959
+ "Upper 90%": "324"
960
+ },
961
+ {
962
+ "Date": "9/23/2022",
963
+ "Timeline Stage": "Estimate",
964
+ "Lower 90%": "99",
965
+ "Upper 90%": "290"
966
+ },
967
+ {
968
+ "Date": "9/24/2022",
969
+ "Timeline Stage": "Estimate",
970
+ "Lower 90%": "38",
971
+ "Upper 90%": "112"
972
+ },
973
+ {
974
+ "Date": "9/25/2022",
975
+ "Timeline Stage": "Estimate",
976
+ "Lower 90%": "24",
977
+ "Upper 90%": "75"
978
+ },
979
+ {
980
+ "Date": "9/26/2022",
981
+ "Timeline Stage": "Estimate",
982
+ "Lower 90%": "97",
983
+ "Upper 90%": "271"
984
+ },
985
+ {
986
+ "Date": "9/27/2022",
987
+ "Timeline Stage": "Estimate",
988
+ "Lower 90%": "102",
989
+ "Upper 90%": "288"
990
+ },
991
+ {
992
+ "Date": "9/28/2022",
993
+ "Timeline Stage": "Estimate",
994
+ "Lower 90%": "85",
995
+ "Upper 90%": "239"
996
+ },
997
+ {
998
+ "Date": "9/29/2022",
999
+ "Timeline Stage": "Estimate",
1000
+ "Lower 90%": "90",
1001
+ "Upper 90%": "258"
1002
+ },
1003
+ {
1004
+ "Date": "9/30/2022",
1005
+ "Timeline Stage": "Estimate",
1006
+ "Lower 90%": "79",
1007
+ "Upper 90%": "224"
1008
+ },
1009
+ {
1010
+ "Date": "10/1/2022",
1011
+ "Timeline Stage": "Estimate",
1012
+ "Lower 90%": "27",
1013
+ "Upper 90%": "87"
1014
+ },
1015
+ {
1016
+ "Date": "10/2/2022",
1017
+ "Timeline Stage": "Estimate",
1018
+ "Lower 90%": "18",
1019
+ "Upper 90%": "57"
1020
+ },
1021
+ {
1022
+ "Date": "10/3/2022",
1023
+ "Timeline Stage": "Estimate",
1024
+ "Lower 90%": "70",
1025
+ "Upper 90%": "206"
1026
+ },
1027
+ {
1028
+ "Date": "10/4/2022",
1029
+ "Timeline Stage": "Estimate",
1030
+ "Lower 90%": "79",
1031
+ "Upper 90%": "221"
1032
+ },
1033
+ {
1034
+ "Date": "10/5/2022",
1035
+ "Timeline Stage": "Estimate Based on Partial Data",
1036
+ "Lower 90%": "62",
1037
+ "Upper 90%": "182"
1038
+ },
1039
+ {
1040
+ "Date": "10/6/2022",
1041
+ "Timeline Stage": "Estimate Based on Partial Data",
1042
+ "Lower 90%": "64",
1043
+ "Upper 90%": "194"
1044
+ },
1045
+ {
1046
+ "Date": "10/7/2022",
1047
+ "Timeline Stage": "Estimate Based on Partial Data",
1048
+ "Lower 90%": "56",
1049
+ "Upper 90%": "165"
1050
+ },
1051
+ {
1052
+ "Date": "10/8/2022",
1053
+ "Timeline Stage": "Estimate Based on Partial Data",
1054
+ "Lower 90%": "19",
1055
+ "Upper 90%": "65"
1056
+ },
1057
+ {
1058
+ "Date": "10/9/2022",
1059
+ "Timeline Stage": "Estimate Based on Partial Data",
1060
+ "Lower 90%": "13",
1061
+ "Upper 90%": "42"
1062
+ },
1063
+ {
1064
+ "Date": "10/10/2022",
1065
+ "Timeline Stage": "Estimate Based on Partial Data",
1066
+ "Lower 90%": "51",
1067
+ "Upper 90%": "148"
1068
+ },
1069
+ {
1070
+ "Date": "10/11/2022",
1071
+ "Timeline Stage": "Estimate Based on Partial Data",
1072
+ "Lower 90%": "55",
1073
+ "Upper 90%": "157"
1074
+ },
1075
+ {
1076
+ "Date": "10/12/2022",
1077
+ "Timeline Stage": "Estimate Based on Partial Data",
1078
+ "Lower 90%": "45",
1079
+ "Upper 90%": "131"
1080
+ },
1081
+ {
1082
+ "Date": "10/13/2022",
1083
+ "Timeline Stage": "Estimate Based on Partial Data",
1084
+ "Lower 90%": "47",
1085
+ "Upper 90%": "135"
1086
+ },
1087
+ {
1088
+ "Date": "10/14/2022",
1089
+ "Timeline Stage": "Estimate Based on Partial Data",
1090
+ "Lower 90%": "40",
1091
+ "Upper 90%": "120"
1092
+ },
1093
+ {
1094
+ "Date": "10/15/2022",
1095
+ "Timeline Stage": "Estimate Based on Partial Data",
1096
+ "Lower 90%": "13",
1097
+ "Upper 90%": "46"
1098
+ },
1099
+ {
1100
+ "Date": "10/16/2022",
1101
+ "Timeline Stage": "Estimate Based on Partial Data",
1102
+ "Lower 90%": "8",
1103
+ "Upper 90%": "31"
1104
+ },
1105
+ {
1106
+ "Date": "10/17/2022",
1107
+ "Timeline Stage": "Estimate Based on Partial Data",
1108
+ "Lower 90%": "34",
1109
+ "Upper 90%": "109"
1110
+ },
1111
+ {
1112
+ "Date": "10/18/2022",
1113
+ "Timeline Stage": "Estimate Based on Partial Data",
1114
+ "Lower 90%": "37",
1115
+ "Upper 90%": "113"
1116
+ },
1117
+ {
1118
+ "Date": "10/19/2022",
1119
+ "Timeline Stage": "Estimate Based on Partial Data",
1120
+ "Lower 90%": "29",
1121
+ "Upper 90%": "92"
1122
+ },
1123
+ {
1124
+ "Date": "10/20/2022",
1125
+ "Timeline Stage": "Forecast",
1126
+ "Lower 90%": "29",
1127
+ "Upper 90%": "99"
1128
+ },
1129
+ {
1130
+ "Date": "10/21/2022",
1131
+ "Timeline Stage": "Forecast",
1132
+ "Lower 90%": "24",
1133
+ "Upper 90%": "87"
1134
+ },
1135
+ {
1136
+ "Date": "10/22/2022",
1137
+ "Timeline Stage": "Forecast",
1138
+ "Lower 90%": "7",
1139
+ "Upper 90%": "35"
1140
+ },
1141
+ {
1142
+ "Date": "10/23/2022",
1143
+ "Timeline Stage": "Forecast",
1144
+ "Lower 90%": "5",
1145
+ "Upper 90%": "24"
1146
+ },
1147
+ {
1148
+ "Date": "10/24/2022",
1149
+ "Timeline Stage": "Forecast",
1150
+ "Lower 90%": "21",
1151
+ "Upper 90%": "81"
1152
+ },
1153
+ {
1154
+ "Date": "10/25/2022",
1155
+ "Timeline Stage": "Forecast",
1156
+ "Lower 90%": "21",
1157
+ "Upper 90%": "85"
1158
+ },
1159
+ {
1160
+ "Date": "10/26/2022",
1161
+ "Timeline Stage": "Forecast",
1162
+ "Lower 90%": "17",
1163
+ "Upper 90%": "75"
1164
+ }
1165
+ ],
1166
+ "dataFileName": "64-forecast-data-basic.csv",
1167
+ "dataFileSourceType": "file",
1168
+ "dataDescription": {
1169
+ "horizontal": false,
1170
+ "series": false
1171
+ },
1172
+ "validated": 4.23,
1173
+ "dynamicMarginTop": 0,
1174
+ "version": "4.25.8",
1175
+ "allowLineToBarGraph": "__​undefined__",
1176
+ "filters": [],
1177
+ "migrations": {
1178
+ "addColorMigration": true
1179
+ }
1180
+ }