@cdc/chart 4.24.1 → 4.24.3

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