@cdc/chart 4.23.11 → 4.24.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. package/dist/cdcchart.js +30220 -29764
  2. package/examples/feature/bar/additional-column-tooltip.json +446 -0
  3. package/examples/feature/bar/tall-data.json +98 -0
  4. package/examples/feature/forest-plot/forest-plot.json +63 -19
  5. package/examples/feature/forest-plot/linear.json +52 -3
  6. package/examples/feature/forest-plot/log.json +26 -0
  7. package/examples/feature/forest-plot/logarithmic.json +0 -35
  8. package/examples/feature/line/line-chart-preliminary.json +346 -0
  9. package/examples/feature/scatterplot/scatterplot.json +272 -33
  10. package/examples/private/chart-t.json +3740 -0
  11. package/examples/private/combo.json +369 -0
  12. package/examples/private/epi-data.csv +13 -0
  13. package/examples/private/epi-data.json +62 -0
  14. package/examples/private/epi.json +403 -0
  15. package/examples/private/occupancy.json +109283 -0
  16. package/examples/private/prod-line-config.json +401 -0
  17. package/examples/private/region-data.json +822 -0
  18. package/examples/private/region-testing.json +312 -0
  19. package/examples/private/scaling.json +45325 -0
  20. package/examples/private/testing-data.json +1739 -0
  21. package/examples/private/testing.json +816 -0
  22. package/index.html +7 -7
  23. package/package.json +2 -2
  24. package/src/CdcChart.tsx +29 -210
  25. package/src/ConfigContext.tsx +6 -0
  26. package/src/_stories/ChartEditor.stories.tsx +22 -0
  27. package/src/_stories/ChartLine.preliminary.tsx +19 -0
  28. package/src/_stories/_mock/pie_config.json +191 -0
  29. package/src/_stories/_mock/pie_data.json +218 -0
  30. package/src/_stories/_mock/preliminary_mock.json +346 -0
  31. package/src/components/{AreaChart.Stacked.jsx → AreaChart/components/AreaChart.Stacked.jsx} +2 -2
  32. package/src/components/{AreaChart.jsx → AreaChart/components/AreaChart.jsx} +1 -1
  33. package/src/components/AreaChart/index.tsx +4 -0
  34. package/src/components/{BarChart.Horizontal.tsx → BarChart/components/BarChart.Horizontal.tsx} +8 -8
  35. package/src/components/{BarChart.StackedHorizontal.tsx → BarChart/components/BarChart.StackedHorizontal.tsx} +37 -7
  36. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +106 -0
  37. package/src/components/{BarChart.Vertical.tsx → BarChart/components/BarChart.Vertical.tsx} +41 -57
  38. package/src/components/BarChart/components/BarChart.jsx +39 -0
  39. package/src/components/{BarChartType.jsx → BarChart/components/BarChartType.jsx} +0 -2
  40. package/src/components/BarChart/components/context.tsx +13 -0
  41. package/src/components/BarChart/index.tsx +3 -0
  42. package/src/components/{BoxPlot.jsx → BoxPlot/BoxPlot.jsx} +1 -1
  43. package/src/components/BoxPlot/index.tsx +3 -0
  44. package/src/components/{EditorPanel.jsx → EditorPanel/EditorPanel.tsx} +667 -851
  45. package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +109 -0
  46. package/src/components/{ForestPlotSettings.jsx → EditorPanel/components/Panel.ForestPlotSettings.tsx} +87 -166
  47. package/src/components/EditorPanel/components/Panel.Regions.tsx +168 -0
  48. package/src/components/{Series.jsx → EditorPanel/components/Panel.Series.tsx} +1 -1
  49. package/src/components/EditorPanel/components/PanelProps.ts +3 -0
  50. package/src/components/EditorPanel/components/Panels.tsx +13 -0
  51. package/src/components/EditorPanel/components/panels.scss +72 -0
  52. package/src/components/EditorPanel/editor-panel.scss +751 -0
  53. package/src/components/EditorPanel/index.tsx +3 -0
  54. package/src/{hooks → components/EditorPanel}/useEditorPermissions.js +29 -2
  55. package/src/components/{Forecasting.jsx → Forecasting/Forecasting.jsx} +1 -1
  56. package/src/components/Forecasting/index.tsx +3 -0
  57. package/src/components/ForestPlot/ForestPlot.tsx +254 -0
  58. package/src/components/ForestPlot/ForestPlotProps.ts +7 -0
  59. package/src/components/ForestPlot/index.tsx +1 -209
  60. package/src/components/{Legend.jsx → Legend/Legend.tsx} +150 -113
  61. package/src/components/Legend/index.tsx +3 -0
  62. package/src/components/LineChart/LineChartProps.ts +29 -0
  63. package/src/components/LineChart/{LineChart.Circle.tsx → components/LineChart.Circle.tsx} +12 -3
  64. package/src/components/LineChart/helpers.ts +45 -0
  65. package/src/components/LineChart/index.tsx +20 -8
  66. package/src/components/LinearChart.jsx +52 -69
  67. package/src/components/{PieChart.jsx → PieChart/PieChart.tsx} +16 -7
  68. package/src/components/PieChart/index.tsx +3 -0
  69. package/src/components/Regions/components/Regions.tsx +135 -0
  70. package/src/components/Regions/index.tsx +3 -0
  71. package/src/components/{ScatterPlot.jsx → ScatterPlot/ScatterPlot.jsx} +3 -3
  72. package/src/components/ScatterPlot/index.tsx +3 -0
  73. package/src/components/{SparkLine.jsx → Sparkline/SparkLine.jsx} +2 -2
  74. package/src/components/Sparkline/index.tsx +3 -0
  75. package/src/data/initial-state.js +5 -6
  76. package/src/helpers/abbreviateNumber.ts +17 -0
  77. package/src/helpers/computeMarginBottom.ts +55 -0
  78. package/src/helpers/filterData.ts +18 -0
  79. package/src/helpers/generateColorsArray.ts +8 -0
  80. package/src/helpers/getQuartiles.ts +30 -0
  81. package/src/helpers/handleChartAriaLabels.ts +19 -0
  82. package/src/helpers/handleLineType.ts +18 -0
  83. package/src/helpers/lineOptions.ts +18 -0
  84. package/src/helpers/sort.ts +7 -0
  85. package/src/helpers/tests/computeMarginBottom.test.ts +20 -0
  86. package/src/hooks/useBarChart.js +7 -6
  87. package/src/hooks/useScales.ts +1 -1
  88. package/src/hooks/{useTooltip.jsx → useTooltip.tsx} +23 -21
  89. package/src/scss/main.scss +67 -3
  90. package/src/types/ChartConfig.ts +158 -23
  91. package/src/types/ChartContext.ts +26 -10
  92. package/src/types/ForestPlot.ts +7 -14
  93. package/examples/feature/scatterplot/scatterplot-continuous.csv +0 -17
  94. package/src/ConfigContext.jsx +0 -5
  95. package/src/components/BarChart.StackedVertical.tsx +0 -91
  96. package/src/components/BarChart.jsx +0 -30
  97. package/src/components/ForestPlot/Readme.md +0 -0
  98. package/src/scss/LinearChart.scss +0 -0
  99. package/src/scss/editor-panel.scss +0 -745
  100. package/src/scss/legend.scss +0 -206
  101. package/src/scss/mixins.scss +0 -0
  102. package/src/scss/variables.scss +0 -1
  103. package/src/types/ChartProps.ts +0 -7
@@ -0,0 +1,446 @@
1
+ {
2
+ "type": "chart",
3
+ "debugSvg": false,
4
+ "chartMessage": {
5
+ "noData": "No Data Available"
6
+ },
7
+ "title": "",
8
+ "showTitle": true,
9
+ "showDownloadMediaButton": false,
10
+ "theme": "theme-blue",
11
+ "animate": false,
12
+ "fontSize": "medium",
13
+ "lineDatapointStyle": "hover",
14
+ "lineDatapointColor": "Same as Line",
15
+ "barHasBorder": "false",
16
+ "isLollipopChart": false,
17
+ "lollipopShape": "circle",
18
+ "lollipopColorStyle": "two-tone",
19
+ "visualizationSubType": "regular",
20
+ "barStyle": "",
21
+ "roundingStyle": "standard",
22
+ "tipRounding": "top",
23
+ "isResponsiveTicks": false,
24
+ "general": {
25
+ "showDownloadButton": false
26
+ },
27
+ "padding": {
28
+ "left": 5,
29
+ "right": 5
30
+ },
31
+ "suppressedData": [],
32
+ "yAxis": {
33
+ "hideAxis": false,
34
+ "displayNumbersOnBar": false,
35
+ "hideLabel": false,
36
+ "hideTicks": false,
37
+ "size": 50,
38
+ "gridLines": false,
39
+ "enablePadding": false,
40
+ "min": "",
41
+ "max": "",
42
+ "labelColor": "#333",
43
+ "tickLabelColor": "#333",
44
+ "tickColor": "#333",
45
+ "rightHideAxis": true,
46
+ "rightAxisSize": 0,
47
+ "rightLabel": "",
48
+ "rightLabelOffsetSize": 0,
49
+ "rightAxisLabelColor": "#333",
50
+ "rightAxisTickLabelColor": "#333",
51
+ "rightAxisTickColor": "#333",
52
+ "numTicks": "",
53
+ "axisPadding": 0,
54
+ "tickRotation": 0,
55
+ "anchors": []
56
+ },
57
+ "boxplot": {
58
+ "plots": [],
59
+ "borders": "true",
60
+ "firstQuartilePercentage": 25,
61
+ "thirdQuartilePercentage": 75,
62
+ "boxWidthPercentage": 40,
63
+ "plotOutlierValues": false,
64
+ "plotNonOutlierValues": true,
65
+ "legend": {
66
+ "showHowToReadText": false,
67
+ "howToReadText": ""
68
+ },
69
+ "labels": {
70
+ "q1": "Lower Quartile",
71
+ "q2": "q2",
72
+ "q3": "Upper Quartile",
73
+ "q4": "q4",
74
+ "minimum": "Minimum",
75
+ "maximum": "Maximum",
76
+ "mean": "Mean",
77
+ "median": "Median",
78
+ "sd": "Standard Deviation",
79
+ "iqr": "Interquartile Range",
80
+ "total": "Total",
81
+ "outliers": "Outliers",
82
+ "values": "Values",
83
+ "lowerBounds": "Lower Bounds",
84
+ "upperBounds": "Upper Bounds"
85
+ }
86
+ },
87
+ "topAxis": {
88
+ "hasLine": false
89
+ },
90
+ "isLegendValue": false,
91
+ "barThickness": 0.35,
92
+ "barHeight": 25,
93
+ "barSpace": 15,
94
+ "heights": {
95
+ "vertical": 300,
96
+ "horizontal": 750
97
+ },
98
+ "xAxis": {
99
+ "sortDates": false,
100
+ "anchors": [],
101
+ "type": "categorical",
102
+ "showTargetLabel": true,
103
+ "targetLabel": "Target",
104
+ "hideAxis": false,
105
+ "hideLabel": false,
106
+ "hideTicks": false,
107
+ "size": 75,
108
+ "tickRotation": 0,
109
+ "min": "",
110
+ "max": "",
111
+ "labelColor": "#333",
112
+ "tickLabelColor": "#333",
113
+ "tickColor": "#333",
114
+ "numTicks": "",
115
+ "labelOffset": 65,
116
+ "axisPadding": 0,
117
+ "target": 0,
118
+ "maxTickRotation": 0,
119
+ "dataKey": "date",
120
+ "tickWidthMax": 51
121
+ },
122
+ "table": {
123
+ "label": "Data Table",
124
+ "expanded": true,
125
+ "limitHeight": false,
126
+ "height": "",
127
+ "caption": "",
128
+ "showDownloadUrl": false,
129
+ "showDataTableLink": true,
130
+ "indexLabel": "",
131
+ "download": false,
132
+ "showVertical": true,
133
+ "show": true
134
+ },
135
+ "orientation": "vertical",
136
+ "color": "pinkpurple",
137
+ "columns": {
138
+ "additionalColumn1": {
139
+ "label": "COVID Lower CI",
140
+ "dataTable": false,
141
+ "tooltips": true,
142
+ "prefix": "",
143
+ "suffix": "",
144
+ "forestPlot": false,
145
+ "startingPoint": "0",
146
+ "forestPlotAlignRight": false,
147
+ "series": "COVID-value",
148
+ "name": "COVID-lower_ci"
149
+ },
150
+ "additionalColumn2": {
151
+ "label": "COVID Upper CI",
152
+ "dataTable": false,
153
+ "tooltips": true,
154
+ "prefix": "",
155
+ "suffix": "",
156
+ "forestPlot": false,
157
+ "startingPoint": "0",
158
+ "forestPlotAlignRight": false,
159
+ "name": "COVID-upper_ci",
160
+ "series": "COVID-value"
161
+ },
162
+ "additionalColumn3": {
163
+ "label": "RSV Lower CI",
164
+ "dataTable": false,
165
+ "tooltips": true,
166
+ "prefix": "",
167
+ "suffix": "",
168
+ "forestPlot": false,
169
+ "startingPoint": "0",
170
+ "forestPlotAlignRight": false,
171
+ "series": "RSV-value",
172
+ "name": "RSV-lower_ci"
173
+ },
174
+ "additionalColumn4": {
175
+ "label": "RSV Upper CI",
176
+ "dataTable": false,
177
+ "tooltips": true,
178
+ "prefix": "",
179
+ "suffix": "",
180
+ "forestPlot": false,
181
+ "startingPoint": "0",
182
+ "forestPlotAlignRight": false,
183
+ "name": "RSV-upper_ci",
184
+ "series": "RSV-value"
185
+ },
186
+ "additionalColumn5": {
187
+ "label": "Flu Lower CI",
188
+ "dataTable": false,
189
+ "tooltips": true,
190
+ "prefix": "",
191
+ "suffix": "",
192
+ "forestPlot": false,
193
+ "startingPoint": "0",
194
+ "forestPlotAlignRight": false,
195
+ "name": "Flu-lower_ci",
196
+ "series": "Flu-value"
197
+ },
198
+ "additionalColumn6": {
199
+ "label": "Flu Upper CI",
200
+ "dataTable": false,
201
+ "tooltips": true,
202
+ "prefix": "",
203
+ "suffix": "",
204
+ "forestPlot": false,
205
+ "startingPoint": "0",
206
+ "forestPlotAlignRight": false,
207
+ "name": "Flu-upper_ci",
208
+ "series": "Flu-value"
209
+ }
210
+ },
211
+ "legend": {
212
+ "hide": false,
213
+ "behavior": "isolate",
214
+ "singleRow": false,
215
+ "colorCode": "",
216
+ "reverseLabelOrder": false,
217
+ "description": "",
218
+ "dynamicLegend": false,
219
+ "dynamicLegendDefaultText": "Show All",
220
+ "dynamicLegendItemLimit": 5,
221
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
222
+ "dynamicLegendChartMessage": "Select Options from the Legend",
223
+ "lineMode": false,
224
+ "verticalSorted": false,
225
+ "highlightOnHover": false
226
+ },
227
+ "brush": {
228
+ "height": 25,
229
+ "data": [
230
+ {
231
+ "date": "1/1/23",
232
+ "filter1": "value1",
233
+ "COVID-value": 23,
234
+ "COVID-lower_ci": 20,
235
+ "COVID-upper_ci": 47,
236
+ "RSV-value": 33,
237
+ "RSV-lower_ci": 10,
238
+ "RSV-upper_ci": 57,
239
+ "Flu-value": 53,
240
+ "Flu-lower_ci": 40,
241
+ "Flu-upper_ci": 67
242
+ },
243
+ {
244
+ "date": "1/2/23",
245
+ "filter1": "value1",
246
+ "COVID-value": 60,
247
+ "COVID-lower_ci": 20,
248
+ "COVID-upper_ci": 87,
249
+ "RSV-value": 33,
250
+ "RSV-lower_ci": 10,
251
+ "RSV-upper_ci": 57,
252
+ "Flu-value": 53,
253
+ "Flu-lower_ci": 40,
254
+ "Flu-upper_ci": 67
255
+ }
256
+ ],
257
+ "active": false
258
+ },
259
+ "exclusions": {
260
+ "active": false,
261
+ "keys": []
262
+ },
263
+ "palette": "qualitative-bold",
264
+ "isPaletteReversed": false,
265
+ "twoColor": {
266
+ "palette": "monochrome-1",
267
+ "isPaletteReversed": false
268
+ },
269
+ "labels": false,
270
+ "dataFormat": {
271
+ "commas": false,
272
+ "prefix": "",
273
+ "suffix": "",
274
+ "abbreviated": false,
275
+ "bottomSuffix": "",
276
+ "bottomPrefix": "",
277
+ "bottomAbbreviated": false
278
+ },
279
+ "confidenceKeys": {},
280
+ "visual": {
281
+ "border": true,
282
+ "accent": true,
283
+ "background": true,
284
+ "verticalHoverLine": false,
285
+ "horizontalHoverLine": false
286
+ },
287
+ "useLogScale": false,
288
+ "filterBehavior": "Filter Change",
289
+ "highlightedBarValues": [],
290
+ "series": [
291
+ {
292
+ "dataKey": "COVID-value",
293
+ "type": "Bar",
294
+ "axis": "Left",
295
+ "tooltip": true
296
+ },
297
+ {
298
+ "dataKey": "RSV-value",
299
+ "type": "Bar",
300
+ "axis": "Left",
301
+ "tooltip": true
302
+ },
303
+ {
304
+ "dataKey": "Flu-value",
305
+ "type": "Bar",
306
+ "axis": "Left",
307
+ "tooltip": true
308
+ }
309
+ ],
310
+ "tooltips": {
311
+ "opacity": 90,
312
+ "singleSeries": true
313
+ },
314
+ "forestPlot": {
315
+ "startAt": 0,
316
+ "colors": {
317
+ "line": "",
318
+ "shape": ""
319
+ },
320
+ "lineOfNoEffect": {
321
+ "show": true
322
+ },
323
+ "type": "",
324
+ "pooledResult": {
325
+ "diamondHeight": 5,
326
+ "column": ""
327
+ },
328
+ "estimateField": "",
329
+ "estimateRadius": "",
330
+ "shape": "",
331
+ "rowHeight": 20,
332
+ "description": {
333
+ "show": true,
334
+ "text": "description",
335
+ "location": 0
336
+ },
337
+ "result": {
338
+ "show": true,
339
+ "text": "result",
340
+ "location": 100
341
+ },
342
+ "radius": {
343
+ "min": 1,
344
+ "max": 8,
345
+ "scalingColumn": ""
346
+ },
347
+ "regression": {
348
+ "lower": 0,
349
+ "upper": 0,
350
+ "estimateField": 0
351
+ },
352
+ "leftWidthOffset": 0,
353
+ "rightWidthOffset": 0,
354
+ "showZeroLine": false,
355
+ "hideDateCategoryCol": false,
356
+ "leftLabel": "",
357
+ "rightLabel": ""
358
+ },
359
+ "area": {
360
+ "isStacked": false
361
+ },
362
+ "visualizationType": "Bar",
363
+ "dataUrl": "examples/feature/bar/tall-data.json",
364
+ "dataFileName": "tall-data.json",
365
+ "dataFileSourceType": "file",
366
+ "dataDescription": {
367
+ "horizontal": false,
368
+ "series": true,
369
+ "singleRow": false,
370
+ "seriesKey": "pathogen",
371
+ "xKey": "date",
372
+ "valueKeys": [
373
+ "value",
374
+ "lower_ci",
375
+ "upper_ci"
376
+ ]
377
+ },
378
+ "validated": 4.23,
379
+ "filters": [
380
+ {
381
+ "values": [
382
+ "value1",
383
+ "value2"
384
+ ],
385
+ "active": "value1",
386
+ "filterStyle": "dropdown",
387
+ "columnName": "filter1",
388
+ "order": "asc"
389
+ }
390
+ ],
391
+ "dynamicMarginTop": 0,
392
+ "data": [
393
+ {
394
+ "date": "1/1/23",
395
+ "filter1": "value1",
396
+ "COVID-value": 23,
397
+ "COVID-lower_ci": 20,
398
+ "COVID-upper_ci": 47,
399
+ "RSV-value": 33,
400
+ "RSV-lower_ci": 10,
401
+ "RSV-upper_ci": 57,
402
+ "Flu-value": 53,
403
+ "Flu-lower_ci": 40,
404
+ "Flu-upper_ci": 67
405
+ },
406
+ {
407
+ "date": "1/2/23",
408
+ "filter1": "value1",
409
+ "COVID-value": 60,
410
+ "COVID-lower_ci": 20,
411
+ "COVID-upper_ci": 87,
412
+ "RSV-value": 33,
413
+ "RSV-lower_ci": 10,
414
+ "RSV-upper_ci": 57,
415
+ "Flu-value": 53,
416
+ "Flu-lower_ci": 40,
417
+ "Flu-upper_ci": 67
418
+ },
419
+ {
420
+ "date": "1/1/23",
421
+ "filter1": "value2",
422
+ "COVID-value": 23,
423
+ "COVID-lower_ci": 20,
424
+ "COVID-upper_ci": 47,
425
+ "RSV-value": 33,
426
+ "RSV-lower_ci": 10,
427
+ "RSV-upper_ci": 57,
428
+ "Flu-value": 53,
429
+ "Flu-lower_ci": 40,
430
+ "Flu-upper_ci": 67
431
+ },
432
+ {
433
+ "date": "1/2/23",
434
+ "filter1": "value2",
435
+ "COVID-value": 23,
436
+ "COVID-lower_ci": 20,
437
+ "COVID-upper_ci": 47,
438
+ "RSV-value": 33,
439
+ "RSV-lower_ci": 10,
440
+ "RSV-upper_ci": 57,
441
+ "Flu-value": 53,
442
+ "Flu-lower_ci": 40,
443
+ "Flu-upper_ci": 67
444
+ }
445
+ ]
446
+ }
@@ -0,0 +1,98 @@
1
+ [
2
+ {
3
+ "date": "1/1/23",
4
+ "pathogen": "COVID",
5
+ "value": 23,
6
+ "upper_ci": 47,
7
+ "lower_ci": 20,
8
+ "filter1": "value1"
9
+ },
10
+ {
11
+ "date": "1/1/23",
12
+ "pathogen": "RSV",
13
+ "value": 33,
14
+ "upper_ci": 57,
15
+ "lower_ci": 10,
16
+ "filter1": "value1"
17
+ },
18
+ {
19
+ "date": "1/1/23",
20
+ "pathogen": "Flu",
21
+ "value": 53,
22
+ "upper_ci": 67,
23
+ "lower_ci": 40,
24
+ "filter1": "value1"
25
+ },
26
+ {
27
+ "date": "1/2/23",
28
+ "pathogen": "COVID",
29
+ "value": 60,
30
+ "upper_ci": 87,
31
+ "lower_ci": 20,
32
+ "filter1": "value1"
33
+ },
34
+ {
35
+ "date": "1/2/23",
36
+ "pathogen": "RSV",
37
+ "value": 33,
38
+ "upper_ci": 57,
39
+ "lower_ci": 10,
40
+ "filter1": "value1"
41
+ },
42
+ {
43
+ "date": "1/2/23",
44
+ "pathogen": "Flu",
45
+ "value": 53,
46
+ "upper_ci": 67,
47
+ "lower_ci": 40,
48
+ "filter1": "value1"
49
+ },
50
+ {
51
+ "date": "1/1/23",
52
+ "pathogen": "COVID",
53
+ "value": 23,
54
+ "upper_ci": 47,
55
+ "lower_ci": 20,
56
+ "filter1": "value2"
57
+ },
58
+ {
59
+ "date": "1/1/23",
60
+ "pathogen": "RSV",
61
+ "value": 33,
62
+ "upper_ci": 57,
63
+ "lower_ci": 10,
64
+ "filter1": "value2"
65
+ },
66
+ {
67
+ "date": "1/1/23",
68
+ "pathogen": "Flu",
69
+ "value": 53,
70
+ "upper_ci": 67,
71
+ "lower_ci": 40,
72
+ "filter1": "value2"
73
+ },
74
+ {
75
+ "date": "1/2/23",
76
+ "pathogen": "COVID",
77
+ "value": 23,
78
+ "upper_ci": 47,
79
+ "lower_ci": 20,
80
+ "filter1": "value2"
81
+ },
82
+ {
83
+ "date": "1/2/23",
84
+ "pathogen": "RSV",
85
+ "value": 33,
86
+ "upper_ci": 57,
87
+ "lower_ci": 10,
88
+ "filter1": "value2"
89
+ },
90
+ {
91
+ "date": "1/2/23",
92
+ "pathogen": "Flu",
93
+ "value": 53,
94
+ "upper_ci": 67,
95
+ "lower_ci": 40,
96
+ "filter1": "value2"
97
+ }
98
+ ]