@cdc/chart 4.23.10 → 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 (125) hide show
  1. package/dist/cdcchart.js +34606 -32218
  2. package/examples/feature/bar/additional-column-tooltip.json +446 -0
  3. package/examples/feature/bar/example-bar-chart.json +1 -46
  4. package/examples/feature/bar/lollipop.json +156 -0
  5. package/examples/feature/bar/tall-data.json +98 -0
  6. package/examples/feature/combo/planet-combo-example-config.json +99 -9
  7. package/examples/feature/dev-4261.json +399 -0
  8. package/examples/feature/forest-plot/forest-plot.json +63 -19
  9. package/examples/feature/forest-plot/{broken.json → linear.json} +77 -23
  10. package/examples/feature/forest-plot/log.json +26 -0
  11. package/examples/feature/forest-plot/logarithmic.json +271 -0
  12. package/examples/feature/line/line-chart-preliminary.json +346 -0
  13. package/examples/feature/line/line-points.json +340 -0
  14. package/examples/feature/regions/index.json +462 -0
  15. package/examples/feature/scatterplot/scatterplot.json +272 -33
  16. package/examples/gallery/bar-chart-vertical/combo-line-chart.json +181 -48
  17. package/examples/private/chart-t.json +3740 -0
  18. package/examples/private/combo.json +369 -0
  19. package/examples/private/epi-data.csv +13 -0
  20. package/examples/private/epi-data.json +62 -0
  21. package/examples/private/epi.json +403 -0
  22. package/examples/private/occupancy.json +109283 -0
  23. package/examples/private/prod-line-config.json +401 -0
  24. package/examples/private/region-data.json +822 -0
  25. package/examples/private/region-testing.json +312 -0
  26. package/examples/private/scaling.json +45325 -0
  27. package/examples/private/testing-data.json +1739 -0
  28. package/examples/private/testing.json +816 -0
  29. package/examples/sparkline-multilple.json +846 -0
  30. package/index.html +12 -8
  31. package/package.json +3 -3
  32. package/src/CdcChart.tsx +42 -211
  33. package/src/ConfigContext.tsx +6 -0
  34. package/src/_stories/Chart.stories.tsx +188 -0
  35. package/src/_stories/Chart.tooltip.stories.tsx +305 -0
  36. package/src/_stories/ChartBrush.stories.tsx +19 -0
  37. package/src/_stories/ChartEditor.stories.tsx +22 -0
  38. package/src/_stories/ChartLine.preliminary.tsx +19 -0
  39. package/src/_stories/ChartSuppress.stories.tsx +19 -0
  40. package/src/_stories/_mock/brush_mock.json +393 -0
  41. package/src/_stories/_mock/pie_config.json +191 -0
  42. package/src/_stories/_mock/pie_data.json +218 -0
  43. package/src/_stories/_mock/preliminary_mock.json +346 -0
  44. package/src/_stories/_mock/suppress_mock.json +911 -0
  45. package/src/components/{AreaChart.Stacked.jsx → AreaChart/components/AreaChart.Stacked.jsx} +6 -7
  46. package/src/components/{AreaChart.jsx → AreaChart/components/AreaChart.jsx} +7 -36
  47. package/src/components/AreaChart/index.tsx +4 -0
  48. package/src/components/{BarChart.Horizontal.jsx → BarChart/components/BarChart.Horizontal.tsx} +111 -34
  49. package/src/components/{BarChart.StackedHorizontal.jsx → BarChart/components/BarChart.StackedHorizontal.tsx} +55 -20
  50. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +106 -0
  51. package/src/components/{BarChart.Vertical.jsx → BarChart/components/BarChart.Vertical.tsx} +162 -34
  52. package/src/components/BarChart/components/BarChart.jsx +39 -0
  53. package/src/components/{BarChartType.jsx → BarChart/components/BarChartType.jsx} +0 -2
  54. package/src/components/BarChart/components/context.tsx +13 -0
  55. package/src/components/BarChart/index.tsx +3 -0
  56. package/src/components/{BoxPlot.jsx → BoxPlot/BoxPlot.jsx} +1 -1
  57. package/src/components/BoxPlot/index.tsx +3 -0
  58. package/src/components/DeviationBar.jsx +4 -3
  59. package/src/components/{EditorPanel.jsx → EditorPanel/EditorPanel.tsx} +807 -865
  60. package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +109 -0
  61. package/src/components/{ForestPlotSettings.jsx → EditorPanel/components/Panel.ForestPlotSettings.tsx} +190 -220
  62. package/src/components/EditorPanel/components/Panel.Regions.tsx +168 -0
  63. package/src/components/{Series.jsx → EditorPanel/components/Panel.Series.tsx} +23 -4
  64. package/src/components/EditorPanel/components/PanelProps.ts +3 -0
  65. package/src/components/EditorPanel/components/Panels.tsx +13 -0
  66. package/src/components/EditorPanel/components/panels.scss +72 -0
  67. package/src/components/EditorPanel/editor-panel.scss +751 -0
  68. package/src/components/EditorPanel/index.tsx +3 -0
  69. package/src/{hooks → components/EditorPanel}/useEditorPermissions.js +50 -5
  70. package/src/components/{Forecasting.jsx → Forecasting/Forecasting.jsx} +1 -1
  71. package/src/components/Forecasting/index.tsx +3 -0
  72. package/src/components/ForestPlot/ForestPlot.tsx +254 -0
  73. package/src/components/ForestPlot/ForestPlotProps.ts +18 -0
  74. package/src/components/ForestPlot/index.scss +1 -0
  75. package/src/components/ForestPlot/index.tsx +3 -0
  76. package/src/components/Legend/Legend.tsx +347 -0
  77. package/src/components/Legend/index.tsx +3 -0
  78. package/src/components/LineChart/LineChartProps.ts +46 -0
  79. package/src/components/{LineChart.Circle.tsx → LineChart/components/LineChart.Circle.tsx} +36 -30
  80. package/src/components/LineChart/helpers.ts +45 -0
  81. package/src/components/LineChart/index.scss +1 -0
  82. package/src/components/{LineChart.tsx → LineChart/index.tsx} +83 -42
  83. package/src/components/LinearChart.jsx +125 -82
  84. package/src/components/PairedBarChart.jsx +2 -2
  85. package/src/components/{PieChart.jsx → PieChart/PieChart.tsx} +16 -7
  86. package/src/components/PieChart/index.tsx +3 -0
  87. package/src/components/Regions/components/Regions.tsx +135 -0
  88. package/src/components/Regions/index.tsx +3 -0
  89. package/src/components/{ScatterPlot.jsx → ScatterPlot/ScatterPlot.jsx} +3 -3
  90. package/src/components/ScatterPlot/index.tsx +3 -0
  91. package/src/components/{SparkLine.jsx → Sparkline/SparkLine.jsx} +2 -2
  92. package/src/components/Sparkline/index.tsx +3 -0
  93. package/src/components/ZoomBrush.tsx +168 -0
  94. package/src/data/initial-state.js +30 -16
  95. package/src/helpers/abbreviateNumber.ts +17 -0
  96. package/src/helpers/computeMarginBottom.ts +55 -0
  97. package/src/helpers/filterData.ts +18 -0
  98. package/src/helpers/generateColorsArray.ts +8 -0
  99. package/src/helpers/getQuartiles.ts +30 -0
  100. package/src/helpers/handleChartAriaLabels.ts +19 -0
  101. package/src/helpers/handleLineType.ts +18 -0
  102. package/src/helpers/lineOptions.ts +18 -0
  103. package/src/helpers/sort.ts +7 -0
  104. package/src/helpers/tests/computeMarginBottom.test.ts +20 -0
  105. package/src/hooks/useBarChart.js +72 -7
  106. package/src/hooks/useColorScale.ts +50 -0
  107. package/src/hooks/{useMinMax.js → useMinMax.ts} +75 -23
  108. package/src/hooks/{useRightAxis.js → useRightAxis.ts} +10 -2
  109. package/src/hooks/{useScales.js → useScales.ts} +64 -17
  110. package/src/hooks/{useTooltip.jsx → useTooltip.tsx} +84 -55
  111. package/src/scss/main.scss +70 -38
  112. package/src/types/ChartConfig.ts +178 -0
  113. package/src/types/ChartContext.ts +54 -0
  114. package/src/types/ForestPlot.ts +53 -0
  115. package/examples/feature/scatterplot/scatterplot-continuous.csv +0 -17
  116. package/src/ConfigContext.jsx +0 -5
  117. package/src/components/BarChart.StackedVertical.jsx +0 -95
  118. package/src/components/BarChart.jsx +0 -30
  119. package/src/components/ForestPlot.jsx +0 -191
  120. package/src/components/Legend.jsx +0 -277
  121. package/src/scss/LinearChart.scss +0 -0
  122. package/src/scss/editor-panel.scss +0 -745
  123. package/src/scss/legend.scss +0 -206
  124. package/src/scss/mixins.scss +0 -0
  125. package/src/scss/variables.scss +0 -1
@@ -0,0 +1,846 @@
1
+ {
2
+ "type": "chart",
3
+ "debugSvg": false,
4
+ "chartMessage": {
5
+ "noData": "No Data Available"
6
+ },
7
+ "title": "Sparkline <em>4.23.10</em>",
8
+ "showTitle": true,
9
+ "showDownloadMediaButton": false,
10
+ "showChartBrush": false,
11
+ "theme": "theme-blue",
12
+ "animate": false,
13
+ "fontSize": "medium",
14
+ "lineDatapointStyle": "hover",
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
+ "yAxis": {
32
+ "hideAxis": false,
33
+ "displayNumbersOnBar": false,
34
+ "hideLabel": false,
35
+ "hideTicks": false,
36
+ "size": 50,
37
+ "gridLines": false,
38
+ "enablePadding": false,
39
+ "min": "",
40
+ "max": "",
41
+ "labelColor": "#333",
42
+ "tickLabelColor": "#333",
43
+ "tickColor": "#333",
44
+ "rightHideAxis": true,
45
+ "rightAxisSize": 0,
46
+ "rightLabel": "",
47
+ "rightLabelOffsetSize": 0,
48
+ "rightAxisLabelColor": "#333",
49
+ "rightAxisTickLabelColor": "#333",
50
+ "rightAxisTickColor": "#333",
51
+ "numTicks": "",
52
+ "axisPadding": 0,
53
+ "tickRotation": 0,
54
+ "anchors": []
55
+ },
56
+ "boxplot": {
57
+ "plots": [],
58
+ "borders": "true",
59
+ "firstQuartilePercentage": 25,
60
+ "thirdQuartilePercentage": 75,
61
+ "boxWidthPercentage": 40,
62
+ "plotOutlierValues": false,
63
+ "plotNonOutlierValues": true,
64
+ "legend": {
65
+ "showHowToReadText": false,
66
+ "howToReadText": ""
67
+ },
68
+ "labels": {
69
+ "q1": "Lower Quartile",
70
+ "q2": "q2",
71
+ "q3": "Upper Quartile",
72
+ "q4": "q4",
73
+ "minimum": "Minimum",
74
+ "maximum": "Maximum",
75
+ "mean": "Mean",
76
+ "median": "Median",
77
+ "sd": "Standard Deviation",
78
+ "iqr": "Interquartile Range",
79
+ "total": "Total",
80
+ "outliers": "Outliers",
81
+ "values": "Values",
82
+ "lowerBounds": "Lower Bounds",
83
+ "upperBounds": "Upper Bounds"
84
+ }
85
+ },
86
+ "topAxis": {
87
+ "hasLine": false
88
+ },
89
+ "isLegendValue": false,
90
+ "barThickness": 0.35,
91
+ "barHeight": 25,
92
+ "barSpace": 15,
93
+ "heights": {
94
+ "vertical": 300,
95
+ "horizontal": 750
96
+ },
97
+ "xAxis": {
98
+ "sortDates": false,
99
+ "anchors": [],
100
+ "type": "date",
101
+ "showTargetLabel": true,
102
+ "targetLabel": "Target",
103
+ "hideAxis": false,
104
+ "hideLabel": false,
105
+ "hideTicks": false,
106
+ "size": 75,
107
+ "tickRotation": 0,
108
+ "min": "",
109
+ "max": "",
110
+ "labelColor": "#333",
111
+ "tickLabelColor": "#333",
112
+ "tickColor": "#333",
113
+ "numTicks": "",
114
+ "labelOffset": 65,
115
+ "axisPadding": 0,
116
+ "target": 0,
117
+ "maxTickRotation": 0,
118
+ "dataKey": "Date",
119
+ "label": "Month/Year",
120
+ "dateParseFormat": "%m/%d/%Y",
121
+ "dateDisplayFormat": "%m/%Y"
122
+ },
123
+ "table": {
124
+ "label": "Data Table",
125
+ "expanded": true,
126
+ "limitHeight": false,
127
+ "height": "",
128
+ "caption": "",
129
+ "showDownloadUrl": false,
130
+ "showDataTableLink": true,
131
+ "indexLabel": "",
132
+ "download": false,
133
+ "showVertical": true,
134
+ "show": true
135
+ },
136
+ "orientation": "vertical",
137
+ "color": "pinkpurple",
138
+ "columns": {},
139
+ "legend": {
140
+ "behavior": "isolate",
141
+ "singleRow": false,
142
+ "colorCode": "",
143
+ "reverseLabelOrder": false,
144
+ "description": "",
145
+ "dynamicLegend": false,
146
+ "dynamicLegendDefaultText": "Show All",
147
+ "dynamicLegendItemLimit": 5,
148
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
149
+ "dynamicLegendChartMessage": "Select Options from the Legend",
150
+ "lineMode": false,
151
+ "verticalSorted": false
152
+ },
153
+ "exclusions": {
154
+ "active": false,
155
+ "keys": []
156
+ },
157
+ "palette": "qualitative-bold",
158
+ "isPaletteReversed": false,
159
+ "twoColor": {
160
+ "palette": "monochrome-1",
161
+ "isPaletteReversed": false
162
+ },
163
+ "labels": false,
164
+ "dataFormat": {
165
+ "commas": false,
166
+ "prefix": "",
167
+ "suffix": "",
168
+ "abbreviated": false,
169
+ "bottomSuffix": "",
170
+ "bottomPrefix": "",
171
+ "bottomAbbreviated": false
172
+ },
173
+ "confidenceKeys": {},
174
+ "visual": {
175
+ "border": true,
176
+ "accent": true,
177
+ "background": true,
178
+ "verticalHoverLine": false,
179
+ "horizontalHoverLine": false
180
+ },
181
+ "useLogScale": false,
182
+ "filterBehavior": "Filter Change",
183
+ "highlightedBarValues": [],
184
+ "series": [
185
+ {
186
+ "dataKey": "All",
187
+ "type": "Spark Line",
188
+ "axis": "Left",
189
+ "tooltip": true
190
+ },
191
+ {
192
+ "dataKey": "Male",
193
+ "type": "Spark Line",
194
+ "axis": "Left",
195
+ "tooltip": true
196
+ },
197
+ {
198
+ "dataKey": "Female",
199
+ "type": "Spark Line",
200
+ "axis": "Left",
201
+ "tooltip": true
202
+ }
203
+ ],
204
+ "tooltips": {
205
+ "opacity": 90
206
+ },
207
+ "forestPlot": {
208
+ "startAt": 0,
209
+ "width": "auto",
210
+ "colors": {
211
+ "line": "",
212
+ "shape": ""
213
+ },
214
+ "estimateField": "",
215
+ "estimateRadius": "",
216
+ "lowerCiField": "",
217
+ "upperCiField": "",
218
+ "shape": "",
219
+ "rowHeight": 20,
220
+ "showZeroLine": false,
221
+ "description": {
222
+ "show": true,
223
+ "text": "description",
224
+ "location": 0
225
+ },
226
+ "result": {
227
+ "show": true,
228
+ "text": "result",
229
+ "location": 100
230
+ },
231
+ "radius": {
232
+ "min": 1,
233
+ "max": 8,
234
+ "scalingColumn": ""
235
+ },
236
+ "regression": {
237
+ "lower": 0,
238
+ "upper": 0,
239
+ "estimateField": 0
240
+ },
241
+ "leftWidthOffset": 0,
242
+ "rightWidthOffset": 0
243
+ },
244
+ "brush": {
245
+ "pattern_id": "brush_pattern",
246
+ "accent_color": "#ddd"
247
+ },
248
+ "area": {
249
+ "isStacked": false
250
+ },
251
+ "datasets": {},
252
+ "visualizationType": "Spark Line",
253
+ "data": [
254
+ {
255
+ "Date": "1/1/2021",
256
+ "Group": "Group A",
257
+ "Sex": "Male",
258
+ "Cases per 100K": "6714"
259
+ },
260
+ {
261
+ "Date": "2/1/2021",
262
+ "Group": "Group A",
263
+ "Sex": "Male",
264
+ "Cases per 100K": "7260"
265
+ },
266
+ {
267
+ "Date": "3/1/2021",
268
+ "Group": "Group A",
269
+ "Sex": "Male",
270
+ "Cases per 100K": "6808"
271
+ },
272
+ {
273
+ "Date": "4/1/2021",
274
+ "Group": "Group A",
275
+ "Sex": "Male",
276
+ "Cases per 100K": "6225"
277
+ },
278
+ {
279
+ "Date": "5/1/2021",
280
+ "Group": "Group A",
281
+ "Sex": "Male",
282
+ "Cases per 100K": "6633"
283
+ },
284
+ {
285
+ "Date": "6/1/2021",
286
+ "Group": "Group A",
287
+ "Sex": "Male",
288
+ "Cases per 100K": "10600"
289
+ },
290
+ {
291
+ "Date": "7/1/2021",
292
+ "Group": "Group A",
293
+ "Sex": "Male",
294
+ "Cases per 100K": "11300"
295
+ },
296
+ {
297
+ "Date": "8/1/2021",
298
+ "Group": "Group A",
299
+ "Sex": "Male",
300
+ "Cases per 100K": "12450"
301
+ },
302
+ {
303
+ "Date": "9/1/2021",
304
+ "Group": "Group A",
305
+ "Sex": "Male",
306
+ "Cases per 100K": "14625"
307
+ },
308
+ {
309
+ "Date": "10/1/2021",
310
+ "Group": "Group A",
311
+ "Sex": "Male",
312
+ "Cases per 100K": "18238"
313
+ },
314
+ {
315
+ "Date": "11/1/2021",
316
+ "Group": "Group A",
317
+ "Sex": "Male",
318
+ "Cases per 100K": "18214"
319
+ },
320
+ {
321
+ "Date": "12/1/2021",
322
+ "Group": "Group A",
323
+ "Sex": "Male",
324
+ "Cases per 100K": "16411"
325
+ },
326
+ {
327
+ "Date": "1/1/2022",
328
+ "Group": "Group A",
329
+ "Sex": "Male",
330
+ "Cases per 100K": "15808"
331
+ },
332
+ {
333
+ "Date": "2/1/2022",
334
+ "Group": "Group A",
335
+ "Sex": "Male",
336
+ "Cases per 100K": "11210"
337
+ },
338
+ {
339
+ "Date": "3/1/2022",
340
+ "Group": "Group A",
341
+ "Sex": "Male",
342
+ "Cases per 100K": "9660"
343
+ },
344
+ {
345
+ "Date": "4/1/2022",
346
+ "Group": "Group A",
347
+ "Sex": "Male",
348
+ "Cases per 100K": "7325"
349
+ },
350
+ {
351
+ "Date": "1/1/2021",
352
+ "Group": "Group A",
353
+ "Sex": "Female",
354
+ "Cases per 100K": "5714"
355
+ },
356
+ {
357
+ "Date": "2/1/2021",
358
+ "Group": "Group A",
359
+ "Sex": "Female",
360
+ "Cases per 100K": "6000"
361
+ },
362
+ {
363
+ "Date": "3/1/2021",
364
+ "Group": "Group A",
365
+ "Sex": "Female",
366
+ "Cases per 100K": "5808"
367
+ },
368
+ {
369
+ "Date": "4/1/2021",
370
+ "Group": "Group A",
371
+ "Sex": "Female",
372
+ "Cases per 100K": "6225"
373
+ },
374
+ {
375
+ "Date": "5/1/2021",
376
+ "Group": "Group A",
377
+ "Sex": "Female",
378
+ "Cases per 100K": "5633"
379
+ },
380
+ {
381
+ "Date": "6/1/2021",
382
+ "Group": "Group A",
383
+ "Sex": "Female",
384
+ "Cases per 100K": "8600"
385
+ },
386
+ {
387
+ "Date": "7/1/2021",
388
+ "Group": "Group A",
389
+ "Sex": "Female",
390
+ "Cases per 100K": "9300"
391
+ },
392
+ {
393
+ "Date": "8/1/2021",
394
+ "Group": "Group A",
395
+ "Sex": "Female",
396
+ "Cases per 100K": "9450"
397
+ },
398
+ {
399
+ "Date": "9/1/2021",
400
+ "Group": "Group A",
401
+ "Sex": "Female",
402
+ "Cases per 100K": "3625"
403
+ },
404
+ {
405
+ "Date": "10/1/2021",
406
+ "Group": "Group A",
407
+ "Sex": "Female",
408
+ "Cases per 100K": "3238"
409
+ },
410
+ {
411
+ "Date": "11/1/2021",
412
+ "Group": "Group A",
413
+ "Sex": "Female",
414
+ "Cases per 100K": "2214"
415
+ },
416
+ {
417
+ "Date": "12/1/2021",
418
+ "Group": "Group A",
419
+ "Sex": "Female",
420
+ "Cases per 100K": "2411"
421
+ },
422
+ {
423
+ "Date": "1/1/2022",
424
+ "Group": "Group A",
425
+ "Sex": "Female",
426
+ "Cases per 100K": "2808"
427
+ },
428
+ {
429
+ "Date": "2/1/2022",
430
+ "Group": "Group A",
431
+ "Sex": "Female",
432
+ "Cases per 100K": "3210"
433
+ },
434
+ {
435
+ "Date": "3/1/2022",
436
+ "Group": "Group A",
437
+ "Sex": "Female",
438
+ "Cases per 100K": "2660"
439
+ },
440
+ {
441
+ "Date": "4/1/2022",
442
+ "Group": "Group A",
443
+ "Sex": "Female",
444
+ "Cases per 100K": "2325"
445
+ },
446
+ {
447
+ "Date": "1/1/2021",
448
+ "Group": "Group A",
449
+ "Sex": "All",
450
+ "Cases per 100K": "12428"
451
+ },
452
+ {
453
+ "Date": "2/1/2021",
454
+ "Group": "Group A",
455
+ "Sex": "All",
456
+ "Cases per 100K": "13260"
457
+ },
458
+ {
459
+ "Date": "3/1/2021",
460
+ "Group": "Group A",
461
+ "Sex": "All",
462
+ "Cases per 100K": "12616"
463
+ },
464
+ {
465
+ "Date": "4/1/2021",
466
+ "Group": "Group A",
467
+ "Sex": "All",
468
+ "Cases per 100K": "12450"
469
+ },
470
+ {
471
+ "Date": "5/1/2021",
472
+ "Group": "Group A",
473
+ "Sex": "All",
474
+ "Cases per 100K": "12266"
475
+ },
476
+ {
477
+ "Date": "6/1/2021",
478
+ "Group": "Group A",
479
+ "Sex": "All",
480
+ "Cases per 100K": "19200"
481
+ },
482
+ {
483
+ "Date": "7/1/2021",
484
+ "Group": "Group A",
485
+ "Sex": "All",
486
+ "Cases per 100K": "20600"
487
+ },
488
+ {
489
+ "Date": "8/1/2021",
490
+ "Group": "Group A",
491
+ "Sex": "All",
492
+ "Cases per 100K": "21900"
493
+ },
494
+ {
495
+ "Date": "9/1/2021",
496
+ "Group": "Group A",
497
+ "Sex": "All",
498
+ "Cases per 100K": "18250"
499
+ },
500
+ {
501
+ "Date": "10/1/2021",
502
+ "Group": "Group A",
503
+ "Sex": "All",
504
+ "Cases per 100K": "21476"
505
+ },
506
+ {
507
+ "Date": "11/1/2021",
508
+ "Group": "Group A",
509
+ "Sex": "All",
510
+ "Cases per 100K": "20428"
511
+ },
512
+ {
513
+ "Date": "12/1/2021",
514
+ "Group": "Group A",
515
+ "Sex": "All",
516
+ "Cases per 100K": "18822"
517
+ },
518
+ {
519
+ "Date": "1/1/2022",
520
+ "Group": "Group A",
521
+ "Sex": "All",
522
+ "Cases per 100K": "18616"
523
+ },
524
+ {
525
+ "Date": "2/1/2022",
526
+ "Group": "Group A",
527
+ "Sex": "All",
528
+ "Cases per 100K": "14420"
529
+ },
530
+ {
531
+ "Date": "3/1/2022",
532
+ "Group": "Group A",
533
+ "Sex": "All",
534
+ "Cases per 100K": "12320"
535
+ },
536
+ {
537
+ "Date": "4/1/2022",
538
+ "Group": "Group A",
539
+ "Sex": "All",
540
+ "Cases per 100K": "9650"
541
+ },
542
+ {
543
+ "Date": "1/1/2021",
544
+ "Group": "Group B",
545
+ "Sex": "Male",
546
+ "Cases per 100K": "1760"
547
+ },
548
+ {
549
+ "Date": "2/1/2021",
550
+ "Group": "Group B",
551
+ "Sex": "Male",
552
+ "Cases per 100K": "2900"
553
+ },
554
+ {
555
+ "Date": "3/1/2021",
556
+ "Group": "Group B",
557
+ "Sex": "Male",
558
+ "Cases per 100K": "1566"
559
+ },
560
+ {
561
+ "Date": "4/1/2021",
562
+ "Group": "Group B",
563
+ "Sex": "Male",
564
+ "Cases per 100K": "1799"
565
+ },
566
+ {
567
+ "Date": "5/1/2021",
568
+ "Group": "Group B",
569
+ "Sex": "Male",
570
+ "Cases per 100K": "1526"
571
+ },
572
+ {
573
+ "Date": "6/1/2021",
574
+ "Group": "Group B",
575
+ "Sex": "Male",
576
+ "Cases per 100K": "2438"
577
+ },
578
+ {
579
+ "Date": "7/1/2021",
580
+ "Group": "Group B",
581
+ "Sex": "Male",
582
+ "Cases per 100K": "2599"
583
+ },
584
+ {
585
+ "Date": "8/1/2021",
586
+ "Group": "Group B",
587
+ "Sex": "Male",
588
+ "Cases per 100K": "2864"
589
+ },
590
+ {
591
+ "Date": "9/1/2021",
592
+ "Group": "Group B",
593
+ "Sex": "Male",
594
+ "Cases per 100K": "3364"
595
+ },
596
+ {
597
+ "Date": "10/1/2021",
598
+ "Group": "Group B",
599
+ "Sex": "Male",
600
+ "Cases per 100K": "4195"
601
+ },
602
+ {
603
+ "Date": "11/1/2021",
604
+ "Group": "Group B",
605
+ "Sex": "Male",
606
+ "Cases per 100K": "4189"
607
+ },
608
+ {
609
+ "Date": "12/1/2021",
610
+ "Group": "Group B",
611
+ "Sex": "Male",
612
+ "Cases per 100K": "3775"
613
+ },
614
+ {
615
+ "Date": "1/1/2022",
616
+ "Group": "Group B",
617
+ "Sex": "Male",
618
+ "Cases per 100K": "3636"
619
+ },
620
+ {
621
+ "Date": "2/1/2022",
622
+ "Group": "Group B",
623
+ "Sex": "Male",
624
+ "Cases per 100K": "2578"
625
+ },
626
+ {
627
+ "Date": "3/1/2022",
628
+ "Group": "Group B",
629
+ "Sex": "Male",
630
+ "Cases per 100K": "2222"
631
+ },
632
+ {
633
+ "Date": "4/1/2022",
634
+ "Group": "Group B",
635
+ "Sex": "Male",
636
+ "Cases per 100K": "1685"
637
+ },
638
+ {
639
+ "Date": "1/1/2021",
640
+ "Group": "Group B",
641
+ "Sex": "Female",
642
+ "Cases per 100K": "1314"
643
+ },
644
+ {
645
+ "Date": "2/1/2021",
646
+ "Group": "Group B",
647
+ "Sex": "Female",
648
+ "Cases per 100K": "1380"
649
+ },
650
+ {
651
+ "Date": "3/1/2021",
652
+ "Group": "Group B",
653
+ "Sex": "Female",
654
+ "Cases per 100K": "1500"
655
+ },
656
+ {
657
+ "Date": "4/1/2021",
658
+ "Group": "Group B",
659
+ "Sex": "Female",
660
+ "Cases per 100K": "1432"
661
+ },
662
+ {
663
+ "Date": "5/1/2021",
664
+ "Group": "Group B",
665
+ "Sex": "Female",
666
+ "Cases per 100K": "1296"
667
+ },
668
+ {
669
+ "Date": "6/1/2021",
670
+ "Group": "Group B",
671
+ "Sex": "Female",
672
+ "Cases per 100K": "1978"
673
+ },
674
+ {
675
+ "Date": "7/1/2021",
676
+ "Group": "Group B",
677
+ "Sex": "Female",
678
+ "Cases per 100K": "2300"
679
+ },
680
+ {
681
+ "Date": "8/1/2021",
682
+ "Group": "Group B",
683
+ "Sex": "Female",
684
+ "Cases per 100K": "2174"
685
+ },
686
+ {
687
+ "Date": "9/1/2021",
688
+ "Group": "Group B",
689
+ "Sex": "Female",
690
+ "Cases per 100K": "834"
691
+ },
692
+ {
693
+ "Date": "10/1/2021",
694
+ "Group": "Group B",
695
+ "Sex": "Female",
696
+ "Cases per 100K": "745"
697
+ },
698
+ {
699
+ "Date": "11/1/2021",
700
+ "Group": "Group B",
701
+ "Sex": "Female",
702
+ "Cases per 100K": "780"
703
+ },
704
+ {
705
+ "Date": "12/1/2021",
706
+ "Group": "Group B",
707
+ "Sex": "Female",
708
+ "Cases per 100K": "555"
709
+ },
710
+ {
711
+ "Date": "1/1/2022",
712
+ "Group": "Group B",
713
+ "Sex": "Female",
714
+ "Cases per 100K": "562"
715
+ },
716
+ {
717
+ "Date": "2/1/2022",
718
+ "Group": "Group B",
719
+ "Sex": "Female",
720
+ "Cases per 100K": "738"
721
+ },
722
+ {
723
+ "Date": "3/1/2022",
724
+ "Group": "Group B",
725
+ "Sex": "Female",
726
+ "Cases per 100K": "612"
727
+ },
728
+ {
729
+ "Date": "4/1/2022",
730
+ "Group": "Group B",
731
+ "Sex": "Female",
732
+ "Cases per 100K": "420"
733
+ },
734
+ {
735
+ "Date": "1/1/2021",
736
+ "Group": "Group B",
737
+ "Sex": "All",
738
+ "Cases per 100K": "3074"
739
+ },
740
+ {
741
+ "Date": "2/1/2021",
742
+ "Group": "Group B",
743
+ "Sex": "All",
744
+ "Cases per 100K": "4280"
745
+ },
746
+ {
747
+ "Date": "3/1/2021",
748
+ "Group": "Group B",
749
+ "Sex": "All",
750
+ "Cases per 100K": "3066"
751
+ },
752
+ {
753
+ "Date": "4/1/2021",
754
+ "Group": "Group B",
755
+ "Sex": "All",
756
+ "Cases per 100K": "3231"
757
+ },
758
+ {
759
+ "Date": "5/1/2021",
760
+ "Group": "Group B",
761
+ "Sex": "All",
762
+ "Cases per 100K": "2821"
763
+ },
764
+ {
765
+ "Date": "6/1/2021",
766
+ "Group": "Group B",
767
+ "Sex": "All",
768
+ "Cases per 100K": "4416"
769
+ },
770
+ {
771
+ "Date": "7/1/2021",
772
+ "Group": "Group B",
773
+ "Sex": "All",
774
+ "Cases per 100K": "4899"
775
+ },
776
+ {
777
+ "Date": "8/1/2021",
778
+ "Group": "Group B",
779
+ "Sex": "All",
780
+ "Cases per 100K": "5037"
781
+ },
782
+ {
783
+ "Date": "9/1/2021",
784
+ "Group": "Group B",
785
+ "Sex": "All",
786
+ "Cases per 100K": "4198"
787
+ },
788
+ {
789
+ "Date": "10/1/2021",
790
+ "Group": "Group B",
791
+ "Sex": "All",
792
+ "Cases per 100K": "4939"
793
+ },
794
+ {
795
+ "Date": "11/1/2021",
796
+ "Group": "Group B",
797
+ "Sex": "All",
798
+ "Cases per 100K": "4969"
799
+ },
800
+ {
801
+ "Date": "12/1/2021",
802
+ "Group": "Group B",
803
+ "Sex": "All",
804
+ "Cases per 100K": "4329"
805
+ },
806
+ {
807
+ "Date": "1/1/2022",
808
+ "Group": "Group B",
809
+ "Sex": "All",
810
+ "Cases per 100K": "4198"
811
+ },
812
+ {
813
+ "Date": "2/1/2022",
814
+ "Group": "Group B",
815
+ "Sex": "All",
816
+ "Cases per 100K": "3317"
817
+ },
818
+ {
819
+ "Date": "3/1/2022",
820
+ "Group": "Group B",
821
+ "Sex": "All",
822
+ "Cases per 100K": "2834"
823
+ },
824
+ {
825
+ "Date": "4/1/2022",
826
+ "Group": "Group B",
827
+ "Sex": "All",
828
+ "Cases per 100K": "2105"
829
+ }
830
+ ],
831
+ "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/17-chart-date-test-mm-dd-yyyy.csv",
832
+ "dataFileSourceType": "url",
833
+ "dataDescription": {
834
+ "horizontal": false,
835
+ "series": true,
836
+ "singleRow": false,
837
+ "seriesKey": "Sex",
838
+ "xKey": "Date",
839
+ "valueKeys": [
840
+ "Cases per 100K"
841
+ ]
842
+ },
843
+ "validated": 4.23,
844
+ "introText": "Message: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
845
+ "description": "<strong>sub</strong>text"
846
+ }