@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,1076 @@
1
+ {
2
+ "type": "chart",
3
+ "visualizationType": "Bar",
4
+ "xAxis": {
5
+ "dataKey": "STATE"
6
+ },
7
+ "series": [
8
+ {
9
+ "dataKey": "Rate"
10
+ }
11
+ ],
12
+ "filters": [
13
+ {
14
+ "values": [
15
+ "Home",
16
+ "School",
17
+ "Vehicle",
18
+ "Work"
19
+ ],
20
+ "active": "Home",
21
+ "order": "asc",
22
+ "columnName": "Location",
23
+ "setByQueryParameter": "location"
24
+ }
25
+ ],
26
+ "data": [
27
+ {
28
+ "STATE": "AL",
29
+ "Rate": "10",
30
+ "Location": "Home",
31
+ "URL": "https://www.cdc.gov/",
32
+ "Intensity Level": "Low",
33
+ "Trajectory": "Increasing"
34
+ },
35
+ {
36
+ "STATE": "AK",
37
+ "Rate": "12",
38
+ "Location": "Vehicle",
39
+ "URL": "https://www.cdc.gov/",
40
+ "Intensity Level": "Low",
41
+ "Trajectory": "Increasing"
42
+ },
43
+ {
44
+ "STATE": "AS",
45
+ "Rate": "14",
46
+ "Location": "Work",
47
+ "URL": "https://www.cdc.gov/",
48
+ "Intensity Level": "Low",
49
+ "Trajectory": "Increasing"
50
+ },
51
+ {
52
+ "STATE": "AZ",
53
+ "Rate": "9",
54
+ "Location": "School",
55
+ "URL": "https://www.cdc.gov/",
56
+ "Intensity Level": "Low",
57
+ "Trajectory": "Increasing"
58
+ },
59
+ {
60
+ "STATE": "AR",
61
+ "Rate": "17",
62
+ "Location": "School",
63
+ "URL": "https://www.cdc.gov/",
64
+ "Intensity Level": "Low",
65
+ "Trajectory": "Increasing"
66
+ },
67
+ {
68
+ "STATE": "CA",
69
+ "Rate": "*",
70
+ "Location": "Work",
71
+ "URL": "https://www.cdc.gov/",
72
+ "Intensity Level": "Low",
73
+ "Trajectory": "Increasing"
74
+ },
75
+ {
76
+ "STATE": "CO",
77
+ "Rate": "22",
78
+ "Location": "Vehicle",
79
+ "URL": "https://www.cdc.gov/",
80
+ "Intensity Level": "Low",
81
+ "Trajectory": "Increasing"
82
+ },
83
+ {
84
+ "STATE": "CT",
85
+ "Rate": "10",
86
+ "Location": "Home",
87
+ "URL": "https://www.cdc.gov/",
88
+ "Intensity Level": "Low",
89
+ "Trajectory": "Increasing"
90
+ },
91
+ {
92
+ "STATE": "DE",
93
+ "Rate": "12",
94
+ "Location": "Home",
95
+ "URL": "https://www.cdc.gov/",
96
+ "Intensity Level": "Low",
97
+ "Trajectory": "Increasing"
98
+ },
99
+ {
100
+ "STATE": "District of Columbia",
101
+ "Rate": "14",
102
+ "Location": "Home",
103
+ "URL": "https://www.cdc.gov/",
104
+ "Intensity Level": "Low",
105
+ "Trajectory": "Increasing"
106
+ },
107
+ {
108
+ "STATE": "FL",
109
+ "Rate": "9",
110
+ "Location": "Vehicle",
111
+ "URL": "https://www.cdc.gov/",
112
+ "Intensity Level": "Low",
113
+ "Trajectory": "Increasing"
114
+ },
115
+ {
116
+ "STATE": "GA",
117
+ "Rate": "17",
118
+ "Location": "Work",
119
+ "URL": "https://www.cdc.gov/",
120
+ "Intensity Level": "Low",
121
+ "Trajectory": "Increasing"
122
+ },
123
+ {
124
+ "STATE": "GU",
125
+ "Rate": "20",
126
+ "Location": "School",
127
+ "URL": "https://www.cdc.gov/",
128
+ "Intensity Level": "Low",
129
+ "Trajectory": "Increasing"
130
+ },
131
+ {
132
+ "STATE": "HI",
133
+ "Rate": "22",
134
+ "Location": "School",
135
+ "URL": "https://www.cdc.gov/",
136
+ "Intensity Level": "Low",
137
+ "Trajectory": "Increasing"
138
+ },
139
+ {
140
+ "STATE": "ID",
141
+ "Rate": "*",
142
+ "Location": "Work",
143
+ "URL": "https://www.cdc.gov/",
144
+ "Intensity Level": "Low",
145
+ "Trajectory": "Increasing"
146
+ },
147
+ {
148
+ "STATE": "IL",
149
+ "Rate": "12",
150
+ "Location": "Vehicle",
151
+ "URL": "https://www.cdc.gov/",
152
+ "Intensity Level": "Low",
153
+ "Trajectory": "Increasing"
154
+ },
155
+ {
156
+ "STATE": "IN",
157
+ "Rate": "14",
158
+ "Location": "Home",
159
+ "URL": "https://www.cdc.gov/",
160
+ "Intensity Level": "Low",
161
+ "Trajectory": "Increasing"
162
+ },
163
+ {
164
+ "STATE": "IA",
165
+ "Rate": "9",
166
+ "Location": "Home",
167
+ "URL": "https://www.cdc.gov/",
168
+ "Intensity Level": "Low",
169
+ "Trajectory": "Increasing"
170
+ },
171
+ {
172
+ "STATE": "KS",
173
+ "Rate": "NA",
174
+ "Location": "Home",
175
+ "URL": "https://www.cdc.gov/",
176
+ "Intensity Level": "Low",
177
+ "Trajectory": "Increasing"
178
+ },
179
+ {
180
+ "STATE": "KY",
181
+ "Rate": "20",
182
+ "Location": "Vehicle",
183
+ "URL": "https://www.cdc.gov/",
184
+ "Intensity Level": "Low",
185
+ "Trajectory": "Increasing"
186
+ },
187
+ {
188
+ "STATE": "LA",
189
+ "Rate": "22",
190
+ "Location": "Work",
191
+ "URL": "https://www.cdc.gov/",
192
+ "Intensity Level": "Low",
193
+ "Trajectory": "Increasing"
194
+ },
195
+ {
196
+ "STATE": "ME",
197
+ "Rate": "10",
198
+ "Location": "School",
199
+ "URL": "https://www.cdc.gov/",
200
+ "Intensity Level": "Medium",
201
+ "Trajectory": "Decreasing"
202
+ },
203
+ {
204
+ "STATE": "MH",
205
+ "Rate": "12",
206
+ "Location": "School",
207
+ "URL": "https://www.cdc.gov/",
208
+ "Intensity Level": "Medium",
209
+ "Trajectory": "Decreasing"
210
+ },
211
+ {
212
+ "STATE": "MD",
213
+ "Rate": "*",
214
+ "Location": "Work",
215
+ "URL": "https://www.cdc.gov/",
216
+ "Intensity Level": "Medium",
217
+ "Trajectory": "Decreasing"
218
+ },
219
+ {
220
+ "STATE": "MA",
221
+ "Rate": "9",
222
+ "Location": "Vehicle",
223
+ "URL": "https://www.cdc.gov/",
224
+ "Intensity Level": "Medium",
225
+ "Trajectory": "Decreasing"
226
+ },
227
+ {
228
+ "STATE": "MI",
229
+ "Rate": "17",
230
+ "Location": "Home",
231
+ "URL": "https://www.cdc.gov/",
232
+ "Intensity Level": "Medium",
233
+ "Trajectory": "Decreasing"
234
+ },
235
+ {
236
+ "STATE": "FM",
237
+ "Rate": "20",
238
+ "Location": "Home",
239
+ "URL": "https://www.cdc.gov/",
240
+ "Intensity Level": "Medium",
241
+ "Trajectory": "Decreasing"
242
+ },
243
+ {
244
+ "STATE": "MN",
245
+ "Rate": "22",
246
+ "Location": "Home",
247
+ "URL": "https://www.cdc.gov/",
248
+ "Intensity Level": "Medium",
249
+ "Trajectory": "Decreasing"
250
+ },
251
+ {
252
+ "STATE": "MS",
253
+ "Rate": "10",
254
+ "Location": "Vehicle",
255
+ "URL": "https://www.cdc.gov/",
256
+ "Intensity Level": "Medium",
257
+ "Trajectory": "Decreasing"
258
+ },
259
+ {
260
+ "STATE": "MO",
261
+ "Rate": "11",
262
+ "Location": "Work",
263
+ "URL": "https://www.cdc.gov/",
264
+ "Intensity Level": "Medium",
265
+ "Trajectory": "Decreasing"
266
+ },
267
+ {
268
+ "STATE": "MT",
269
+ "Rate": "14",
270
+ "Location": "School",
271
+ "URL": "https://www.cdc.gov/",
272
+ "Intensity Level": "Medium",
273
+ "Trajectory": "Decreasing"
274
+ },
275
+ {
276
+ "STATE": "NE",
277
+ "Rate": "9",
278
+ "Location": "School",
279
+ "URL": "https://www.cdc.gov/",
280
+ "Intensity Level": "Medium",
281
+ "Trajectory": "Decreasing"
282
+ },
283
+ {
284
+ "STATE": "NV",
285
+ "Rate": "17",
286
+ "Location": "Work",
287
+ "URL": "https://www.cdc.gov/",
288
+ "Intensity Level": "Medium",
289
+ "Trajectory": "Decreasing"
290
+ },
291
+ {
292
+ "STATE": "NH",
293
+ "Rate": "20",
294
+ "Location": "Vehicle",
295
+ "URL": "https://www.cdc.gov/",
296
+ "Intensity Level": "Medium",
297
+ "Trajectory": "Decreasing"
298
+ },
299
+ {
300
+ "STATE": "NJ",
301
+ "Rate": "28",
302
+ "Location": "Home",
303
+ "URL": "https://www.cdc.gov/",
304
+ "Intensity Level": "Medium",
305
+ "Trajectory": "Decreasing"
306
+ },
307
+ {
308
+ "STATE": "NM",
309
+ "Rate": "10",
310
+ "Location": "Home",
311
+ "URL": "https://www.cdc.gov/",
312
+ "Intensity Level": "Medium",
313
+ "Trajectory": "Decreasing"
314
+ },
315
+ {
316
+ "STATE": "NY",
317
+ "Rate": "12",
318
+ "Location": "Home",
319
+ "URL": "https://www.cdc.gov/",
320
+ "Intensity Level": "Medium",
321
+ "Trajectory": "Decreasing"
322
+ },
323
+ {
324
+ "STATE": "NC",
325
+ "Rate": "14",
326
+ "Location": "Vehicle",
327
+ "URL": "https://www.cdc.gov/",
328
+ "Intensity Level": "Medium",
329
+ "Trajectory": "Decreasing"
330
+ },
331
+ {
332
+ "STATE": "ND",
333
+ "Rate": "9",
334
+ "Location": "Work",
335
+ "URL": "https://www.cdc.gov/",
336
+ "Intensity Level": "Medium",
337
+ "Trajectory": "Decreasing"
338
+ },
339
+ {
340
+ "STATE": "MP",
341
+ "Rate": "17",
342
+ "Location": "School",
343
+ "URL": "https://www.cdc.gov/",
344
+ "Intensity Level": "Medium",
345
+ "Trajectory": "Decreasing"
346
+ },
347
+ {
348
+ "STATE": "OH",
349
+ "Rate": "NA",
350
+ "Location": "School",
351
+ "URL": "https://www.cdc.gov/",
352
+ "Intensity Level": "Medium",
353
+ "Trajectory": "Decreasing"
354
+ },
355
+ {
356
+ "STATE": "OK",
357
+ "Rate": "22",
358
+ "Location": "Work",
359
+ "URL": "https://www.cdc.gov/",
360
+ "Intensity Level": "Medium",
361
+ "Trajectory": "Decreasing"
362
+ },
363
+ {
364
+ "STATE": "OR",
365
+ "Rate": "10",
366
+ "Location": "Vehicle",
367
+ "URL": "https://www.cdc.gov/",
368
+ "Intensity Level": "Medium",
369
+ "Trajectory": "Decreasing"
370
+ },
371
+ {
372
+ "STATE": "PW",
373
+ "Rate": "12",
374
+ "Location": "Home",
375
+ "URL": "https://www.cdc.gov/",
376
+ "Intensity Level": "High",
377
+ "Trajectory": "No Change"
378
+ },
379
+ {
380
+ "STATE": "PA",
381
+ "Rate": "14",
382
+ "Location": "Home",
383
+ "URL": "https://www.cdc.gov/",
384
+ "Intensity Level": "High",
385
+ "Trajectory": "No Change"
386
+ },
387
+ {
388
+ "STATE": "PR",
389
+ "Rate": "6",
390
+ "Location": "Home",
391
+ "URL": "https://www.cdc.gov/",
392
+ "Intensity Level": "High",
393
+ "Trajectory": "No Change"
394
+ },
395
+ {
396
+ "STATE": "RI",
397
+ "Rate": "17",
398
+ "Location": "Vehicle",
399
+ "URL": "https://www.cdc.gov/",
400
+ "Intensity Level": "High",
401
+ "Trajectory": "No Change"
402
+ },
403
+ {
404
+ "STATE": "SC",
405
+ "Rate": "20",
406
+ "Location": "Work",
407
+ "URL": "https://www.cdc.gov/",
408
+ "Intensity Level": "High",
409
+ "Trajectory": "No Change"
410
+ },
411
+ {
412
+ "STATE": "SD",
413
+ "Rate": "22",
414
+ "Location": "School",
415
+ "URL": "https://www.cdc.gov/",
416
+ "Intensity Level": "High",
417
+ "Trajectory": "No Change"
418
+ },
419
+ {
420
+ "STATE": "TN",
421
+ "Rate": "10",
422
+ "Location": "School",
423
+ "URL": "https://www.cdc.gov/",
424
+ "Intensity Level": "High",
425
+ "Trajectory": "No Change"
426
+ },
427
+ {
428
+ "STATE": "TX",
429
+ "Rate": "12",
430
+ "Location": "Work",
431
+ "URL": "https://www.cdc.gov/",
432
+ "Intensity Level": "High",
433
+ "Trajectory": "No Change"
434
+ },
435
+ {
436
+ "STATE": "VT",
437
+ "Rate": "9",
438
+ "Location": "Home",
439
+ "URL": "https://www.cdc.gov/",
440
+ "Intensity Level": "High",
441
+ "Trajectory": "No Change"
442
+ },
443
+ {
444
+ "STATE": "VI",
445
+ "Rate": "17",
446
+ "Location": "Vehicle",
447
+ "URL": "https://www.cdc.gov/",
448
+ "Intensity Level": "High",
449
+ "Trajectory": "No Change"
450
+ },
451
+ {
452
+ "STATE": "VA",
453
+ "Rate": "20",
454
+ "Location": "Work",
455
+ "URL": "https://www.cdc.gov/",
456
+ "Intensity Level": "High",
457
+ "Trajectory": "No Change"
458
+ },
459
+ {
460
+ "STATE": "WA",
461
+ "Rate": "22",
462
+ "Location": "School",
463
+ "URL": "https://www.cdc.gov/",
464
+ "Intensity Level": "",
465
+ "Trajectory": "No Change"
466
+ },
467
+ {
468
+ "STATE": "WV",
469
+ "Rate": "10",
470
+ "Location": "School",
471
+ "URL": "https://www.cdc.gov/",
472
+ "Intensity Level": "High",
473
+ "Trajectory": "No Change"
474
+ },
475
+ {
476
+ "STATE": "WI",
477
+ "Rate": "12",
478
+ "Location": "Work",
479
+ "URL": "https://www.cdc.gov/",
480
+ "Intensity Level": "",
481
+ "Trajectory": "No Change"
482
+ },
483
+ {
484
+ "STATE": "WY",
485
+ "Rate": "14",
486
+ "Location": "Home",
487
+ "URL": "https://www.cdc.gov/",
488
+ "Intensity Level": "High",
489
+ "Trajectory": ""
490
+ },
491
+ {
492
+ "STATE": "Los Angeles",
493
+ "Rate": "14",
494
+ "Location": "Vehicle",
495
+ "URL": "https://www.cdc.gov/",
496
+ "Intensity Level": "High",
497
+ "Trajectory": "No Change"
498
+ },
499
+ {
500
+ "STATE": "Atlanta",
501
+ "Rate": "12",
502
+ "Location": "Work",
503
+ "URL": "https://www.cdc.gov/",
504
+ "Intensity Level": "High",
505
+ "Trajectory": "No Change"
506
+ },
507
+ {
508
+ "STATE": "Boston",
509
+ "Rate": "20",
510
+ "Location": "School",
511
+ "URL": "https://www.cdc.gov/",
512
+ "Intensity Level": "High",
513
+ "Trajectory": "No Change"
514
+ },
515
+ {
516
+ "STATE": "New York City",
517
+ "Rate": "22",
518
+ "Location": "School",
519
+ "URL": "https://www.cdc.gov/",
520
+ "Intensity Level": "High",
521
+ "Trajectory": "No Change"
522
+ },
523
+ {
524
+ "STATE": "Dallas",
525
+ "Rate": "18",
526
+ "Location": "Work",
527
+ "URL": "https://www.cdc.gov/",
528
+ "Intensity Level": "High",
529
+ "Trajectory": "No Change"
530
+ },
531
+ {
532
+ "STATE": "Seattle",
533
+ "Rate": "17",
534
+ "Location": "Home",
535
+ "URL": "https://www.cdc.gov/",
536
+ "Intensity Level": "High",
537
+ "Trajectory": "No Change"
538
+ },
539
+ {
540
+ "STATE": "New Orleans",
541
+ "Rate": "14",
542
+ "Location": "Vehicle",
543
+ "URL": "https://www.cdc.gov/",
544
+ "Intensity Level": "High",
545
+ "Trajectory": ""
546
+ }
547
+ ],
548
+ "dataFileName": "hex-data.csv",
549
+ "dataFileSourceType": "file",
550
+ "formattedData": [
551
+ {
552
+ "STATE": "AL",
553
+ "Rate": "10",
554
+ "Location": "Home",
555
+ "URL": "https://www.cdc.gov/",
556
+ "Intensity Level": "Low",
557
+ "Trajectory": "Increasing"
558
+ },
559
+ {
560
+ "STATE": "AK",
561
+ "Rate": "12",
562
+ "Location": "Vehicle",
563
+ "URL": "https://www.cdc.gov/",
564
+ "Intensity Level": "Low",
565
+ "Trajectory": "Increasing"
566
+ },
567
+ {
568
+ "STATE": "AS",
569
+ "Rate": "14",
570
+ "Location": "Work",
571
+ "URL": "https://www.cdc.gov/",
572
+ "Intensity Level": "Low",
573
+ "Trajectory": "Increasing"
574
+ },
575
+ {
576
+ "STATE": "AZ",
577
+ "Rate": "9",
578
+ "Location": "School",
579
+ "URL": "https://www.cdc.gov/",
580
+ "Intensity Level": "Low",
581
+ "Trajectory": "Increasing"
582
+ },
583
+ {
584
+ "STATE": "AR",
585
+ "Rate": "17",
586
+ "Location": "School",
587
+ "URL": "https://www.cdc.gov/",
588
+ "Intensity Level": "Low",
589
+ "Trajectory": "Increasing"
590
+ },
591
+ {
592
+ "STATE": "CA",
593
+ "Rate": "*",
594
+ "Location": "Work",
595
+ "URL": "https://www.cdc.gov/",
596
+ "Intensity Level": "Low",
597
+ "Trajectory": "Increasing"
598
+ },
599
+ {
600
+ "STATE": "CO",
601
+ "Rate": "22",
602
+ "Location": "Vehicle",
603
+ "URL": "https://www.cdc.gov/",
604
+ "Intensity Level": "Low",
605
+ "Trajectory": "Increasing"
606
+ },
607
+ {
608
+ "STATE": "CT",
609
+ "Rate": "10",
610
+ "Location": "Home",
611
+ "URL": "https://www.cdc.gov/",
612
+ "Intensity Level": "Low",
613
+ "Trajectory": "Increasing"
614
+ },
615
+ {
616
+ "STATE": "DE",
617
+ "Rate": "12",
618
+ "Location": "Home",
619
+ "URL": "https://www.cdc.gov/",
620
+ "Intensity Level": "Low",
621
+ "Trajectory": "Increasing"
622
+ },
623
+ {
624
+ "STATE": "District of Columbia",
625
+ "Rate": "14",
626
+ "Location": "Home",
627
+ "URL": "https://www.cdc.gov/",
628
+ "Intensity Level": "Low",
629
+ "Trajectory": "Increasing"
630
+ },
631
+ {
632
+ "STATE": "FL",
633
+ "Rate": "9",
634
+ "Location": "Vehicle",
635
+ "URL": "https://www.cdc.gov/",
636
+ "Intensity Level": "Low",
637
+ "Trajectory": "Increasing"
638
+ },
639
+ {
640
+ "STATE": "GA",
641
+ "Rate": "17",
642
+ "Location": "Work",
643
+ "URL": "https://www.cdc.gov/",
644
+ "Intensity Level": "Low",
645
+ "Trajectory": "Increasing"
646
+ },
647
+ {
648
+ "STATE": "GU",
649
+ "Rate": "20",
650
+ "Location": "School",
651
+ "URL": "https://www.cdc.gov/",
652
+ "Intensity Level": "Low",
653
+ "Trajectory": "Increasing"
654
+ },
655
+ {
656
+ "STATE": "HI",
657
+ "Rate": "22",
658
+ "Location": "School",
659
+ "URL": "https://www.cdc.gov/",
660
+ "Intensity Level": "Low",
661
+ "Trajectory": "Increasing"
662
+ },
663
+ {
664
+ "STATE": "ID",
665
+ "Rate": "*",
666
+ "Location": "Work",
667
+ "URL": "https://www.cdc.gov/",
668
+ "Intensity Level": "Low",
669
+ "Trajectory": "Increasing"
670
+ },
671
+ {
672
+ "STATE": "IL",
673
+ "Rate": "12",
674
+ "Location": "Vehicle",
675
+ "URL": "https://www.cdc.gov/",
676
+ "Intensity Level": "Low",
677
+ "Trajectory": "Increasing"
678
+ },
679
+ {
680
+ "STATE": "IN",
681
+ "Rate": "14",
682
+ "Location": "Home",
683
+ "URL": "https://www.cdc.gov/",
684
+ "Intensity Level": "Low",
685
+ "Trajectory": "Increasing"
686
+ },
687
+ {
688
+ "STATE": "IA",
689
+ "Rate": "9",
690
+ "Location": "Home",
691
+ "URL": "https://www.cdc.gov/",
692
+ "Intensity Level": "Low",
693
+ "Trajectory": "Increasing"
694
+ },
695
+ {
696
+ "STATE": "KS",
697
+ "Rate": "NA",
698
+ "Location": "Home",
699
+ "URL": "https://www.cdc.gov/",
700
+ "Intensity Level": "Low",
701
+ "Trajectory": "Increasing"
702
+ },
703
+ {
704
+ "STATE": "KY",
705
+ "Rate": "20",
706
+ "Location": "Vehicle",
707
+ "URL": "https://www.cdc.gov/",
708
+ "Intensity Level": "Low",
709
+ "Trajectory": "Increasing"
710
+ },
711
+ {
712
+ "STATE": "LA",
713
+ "Rate": "22",
714
+ "Location": "Work",
715
+ "URL": "https://www.cdc.gov/",
716
+ "Intensity Level": "Low",
717
+ "Trajectory": "Increasing"
718
+ },
719
+ {
720
+ "STATE": "ME",
721
+ "Rate": "10",
722
+ "Location": "School",
723
+ "URL": "https://www.cdc.gov/",
724
+ "Intensity Level": "Medium",
725
+ "Trajectory": "Decreasing"
726
+ },
727
+ {
728
+ "STATE": "MH",
729
+ "Rate": "12",
730
+ "Location": "School",
731
+ "URL": "https://www.cdc.gov/",
732
+ "Intensity Level": "Medium",
733
+ "Trajectory": "Decreasing"
734
+ },
735
+ {
736
+ "STATE": "MD",
737
+ "Rate": "*",
738
+ "Location": "Work",
739
+ "URL": "https://www.cdc.gov/",
740
+ "Intensity Level": "Medium",
741
+ "Trajectory": "Decreasing"
742
+ },
743
+ {
744
+ "STATE": "MA",
745
+ "Rate": "9",
746
+ "Location": "Vehicle",
747
+ "URL": "https://www.cdc.gov/",
748
+ "Intensity Level": "Medium",
749
+ "Trajectory": "Decreasing"
750
+ },
751
+ {
752
+ "STATE": "MI",
753
+ "Rate": "17",
754
+ "Location": "Home",
755
+ "URL": "https://www.cdc.gov/",
756
+ "Intensity Level": "Medium",
757
+ "Trajectory": "Decreasing"
758
+ },
759
+ {
760
+ "STATE": "FM",
761
+ "Rate": "20",
762
+ "Location": "Home",
763
+ "URL": "https://www.cdc.gov/",
764
+ "Intensity Level": "Medium",
765
+ "Trajectory": "Decreasing"
766
+ },
767
+ {
768
+ "STATE": "MN",
769
+ "Rate": "22",
770
+ "Location": "Home",
771
+ "URL": "https://www.cdc.gov/",
772
+ "Intensity Level": "Medium",
773
+ "Trajectory": "Decreasing"
774
+ },
775
+ {
776
+ "STATE": "MS",
777
+ "Rate": "10",
778
+ "Location": "Vehicle",
779
+ "URL": "https://www.cdc.gov/",
780
+ "Intensity Level": "Medium",
781
+ "Trajectory": "Decreasing"
782
+ },
783
+ {
784
+ "STATE": "MO",
785
+ "Rate": "11",
786
+ "Location": "Work",
787
+ "URL": "https://www.cdc.gov/",
788
+ "Intensity Level": "Medium",
789
+ "Trajectory": "Decreasing"
790
+ },
791
+ {
792
+ "STATE": "MT",
793
+ "Rate": "14",
794
+ "Location": "School",
795
+ "URL": "https://www.cdc.gov/",
796
+ "Intensity Level": "Medium",
797
+ "Trajectory": "Decreasing"
798
+ },
799
+ {
800
+ "STATE": "NE",
801
+ "Rate": "9",
802
+ "Location": "School",
803
+ "URL": "https://www.cdc.gov/",
804
+ "Intensity Level": "Medium",
805
+ "Trajectory": "Decreasing"
806
+ },
807
+ {
808
+ "STATE": "NV",
809
+ "Rate": "17",
810
+ "Location": "Work",
811
+ "URL": "https://www.cdc.gov/",
812
+ "Intensity Level": "Medium",
813
+ "Trajectory": "Decreasing"
814
+ },
815
+ {
816
+ "STATE": "NH",
817
+ "Rate": "20",
818
+ "Location": "Vehicle",
819
+ "URL": "https://www.cdc.gov/",
820
+ "Intensity Level": "Medium",
821
+ "Trajectory": "Decreasing"
822
+ },
823
+ {
824
+ "STATE": "NJ",
825
+ "Rate": "28",
826
+ "Location": "Home",
827
+ "URL": "https://www.cdc.gov/",
828
+ "Intensity Level": "Medium",
829
+ "Trajectory": "Decreasing"
830
+ },
831
+ {
832
+ "STATE": "NM",
833
+ "Rate": "10",
834
+ "Location": "Home",
835
+ "URL": "https://www.cdc.gov/",
836
+ "Intensity Level": "Medium",
837
+ "Trajectory": "Decreasing"
838
+ },
839
+ {
840
+ "STATE": "NY",
841
+ "Rate": "12",
842
+ "Location": "Home",
843
+ "URL": "https://www.cdc.gov/",
844
+ "Intensity Level": "Medium",
845
+ "Trajectory": "Decreasing"
846
+ },
847
+ {
848
+ "STATE": "NC",
849
+ "Rate": "14",
850
+ "Location": "Vehicle",
851
+ "URL": "https://www.cdc.gov/",
852
+ "Intensity Level": "Medium",
853
+ "Trajectory": "Decreasing"
854
+ },
855
+ {
856
+ "STATE": "ND",
857
+ "Rate": "9",
858
+ "Location": "Work",
859
+ "URL": "https://www.cdc.gov/",
860
+ "Intensity Level": "Medium",
861
+ "Trajectory": "Decreasing"
862
+ },
863
+ {
864
+ "STATE": "MP",
865
+ "Rate": "17",
866
+ "Location": "School",
867
+ "URL": "https://www.cdc.gov/",
868
+ "Intensity Level": "Medium",
869
+ "Trajectory": "Decreasing"
870
+ },
871
+ {
872
+ "STATE": "OH",
873
+ "Rate": "NA",
874
+ "Location": "School",
875
+ "URL": "https://www.cdc.gov/",
876
+ "Intensity Level": "Medium",
877
+ "Trajectory": "Decreasing"
878
+ },
879
+ {
880
+ "STATE": "OK",
881
+ "Rate": "22",
882
+ "Location": "Work",
883
+ "URL": "https://www.cdc.gov/",
884
+ "Intensity Level": "Medium",
885
+ "Trajectory": "Decreasing"
886
+ },
887
+ {
888
+ "STATE": "OR",
889
+ "Rate": "10",
890
+ "Location": "Vehicle",
891
+ "URL": "https://www.cdc.gov/",
892
+ "Intensity Level": "Medium",
893
+ "Trajectory": "Decreasing"
894
+ },
895
+ {
896
+ "STATE": "PW",
897
+ "Rate": "12",
898
+ "Location": "Home",
899
+ "URL": "https://www.cdc.gov/",
900
+ "Intensity Level": "High",
901
+ "Trajectory": "No Change"
902
+ },
903
+ {
904
+ "STATE": "PA",
905
+ "Rate": "14",
906
+ "Location": "Home",
907
+ "URL": "https://www.cdc.gov/",
908
+ "Intensity Level": "High",
909
+ "Trajectory": "No Change"
910
+ },
911
+ {
912
+ "STATE": "PR",
913
+ "Rate": "6",
914
+ "Location": "Home",
915
+ "URL": "https://www.cdc.gov/",
916
+ "Intensity Level": "High",
917
+ "Trajectory": "No Change"
918
+ },
919
+ {
920
+ "STATE": "RI",
921
+ "Rate": "17",
922
+ "Location": "Vehicle",
923
+ "URL": "https://www.cdc.gov/",
924
+ "Intensity Level": "High",
925
+ "Trajectory": "No Change"
926
+ },
927
+ {
928
+ "STATE": "SC",
929
+ "Rate": "20",
930
+ "Location": "Work",
931
+ "URL": "https://www.cdc.gov/",
932
+ "Intensity Level": "High",
933
+ "Trajectory": "No Change"
934
+ },
935
+ {
936
+ "STATE": "SD",
937
+ "Rate": "22",
938
+ "Location": "School",
939
+ "URL": "https://www.cdc.gov/",
940
+ "Intensity Level": "High",
941
+ "Trajectory": "No Change"
942
+ },
943
+ {
944
+ "STATE": "TN",
945
+ "Rate": "10",
946
+ "Location": "School",
947
+ "URL": "https://www.cdc.gov/",
948
+ "Intensity Level": "High",
949
+ "Trajectory": "No Change"
950
+ },
951
+ {
952
+ "STATE": "TX",
953
+ "Rate": "12",
954
+ "Location": "Work",
955
+ "URL": "https://www.cdc.gov/",
956
+ "Intensity Level": "High",
957
+ "Trajectory": "No Change"
958
+ },
959
+ {
960
+ "STATE": "VT",
961
+ "Rate": "9",
962
+ "Location": "Home",
963
+ "URL": "https://www.cdc.gov/",
964
+ "Intensity Level": "High",
965
+ "Trajectory": "No Change"
966
+ },
967
+ {
968
+ "STATE": "VI",
969
+ "Rate": "17",
970
+ "Location": "Vehicle",
971
+ "URL": "https://www.cdc.gov/",
972
+ "Intensity Level": "High",
973
+ "Trajectory": "No Change"
974
+ },
975
+ {
976
+ "STATE": "VA",
977
+ "Rate": "20",
978
+ "Location": "Work",
979
+ "URL": "https://www.cdc.gov/",
980
+ "Intensity Level": "High",
981
+ "Trajectory": "No Change"
982
+ },
983
+ {
984
+ "STATE": "WA",
985
+ "Rate": "22",
986
+ "Location": "School",
987
+ "URL": "https://www.cdc.gov/",
988
+ "Intensity Level": "",
989
+ "Trajectory": "No Change"
990
+ },
991
+ {
992
+ "STATE": "WV",
993
+ "Rate": "10",
994
+ "Location": "School",
995
+ "URL": "https://www.cdc.gov/",
996
+ "Intensity Level": "High",
997
+ "Trajectory": "No Change"
998
+ },
999
+ {
1000
+ "STATE": "WI",
1001
+ "Rate": "12",
1002
+ "Location": "Work",
1003
+ "URL": "https://www.cdc.gov/",
1004
+ "Intensity Level": "",
1005
+ "Trajectory": "No Change"
1006
+ },
1007
+ {
1008
+ "STATE": "WY",
1009
+ "Rate": "14",
1010
+ "Location": "Home",
1011
+ "URL": "https://www.cdc.gov/",
1012
+ "Intensity Level": "High",
1013
+ "Trajectory": ""
1014
+ },
1015
+ {
1016
+ "STATE": "Los Angeles",
1017
+ "Rate": "14",
1018
+ "Location": "Vehicle",
1019
+ "URL": "https://www.cdc.gov/",
1020
+ "Intensity Level": "High",
1021
+ "Trajectory": "No Change"
1022
+ },
1023
+ {
1024
+ "STATE": "Atlanta",
1025
+ "Rate": "12",
1026
+ "Location": "Work",
1027
+ "URL": "https://www.cdc.gov/",
1028
+ "Intensity Level": "High",
1029
+ "Trajectory": "No Change"
1030
+ },
1031
+ {
1032
+ "STATE": "Boston",
1033
+ "Rate": "20",
1034
+ "Location": "School",
1035
+ "URL": "https://www.cdc.gov/",
1036
+ "Intensity Level": "High",
1037
+ "Trajectory": "No Change"
1038
+ },
1039
+ {
1040
+ "STATE": "New York City",
1041
+ "Rate": "22",
1042
+ "Location": "School",
1043
+ "URL": "https://www.cdc.gov/",
1044
+ "Intensity Level": "High",
1045
+ "Trajectory": "No Change"
1046
+ },
1047
+ {
1048
+ "STATE": "Dallas",
1049
+ "Rate": "18",
1050
+ "Location": "Work",
1051
+ "URL": "https://www.cdc.gov/",
1052
+ "Intensity Level": "High",
1053
+ "Trajectory": "No Change"
1054
+ },
1055
+ {
1056
+ "STATE": "Seattle",
1057
+ "Rate": "17",
1058
+ "Location": "Home",
1059
+ "URL": "https://www.cdc.gov/",
1060
+ "Intensity Level": "High",
1061
+ "Trajectory": "No Change"
1062
+ },
1063
+ {
1064
+ "STATE": "New Orleans",
1065
+ "Rate": "14",
1066
+ "Location": "Vehicle",
1067
+ "URL": "https://www.cdc.gov/",
1068
+ "Intensity Level": "High",
1069
+ "Trajectory": ""
1070
+ }
1071
+ ],
1072
+ "dataDescription": {
1073
+ "horizontal": false,
1074
+ "series": false
1075
+ }
1076
+ }