@cdc/chart 4.25.1 → 4.25.3-6

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 (32) hide show
  1. package/dist/cdcchart.js +40346 -40084
  2. package/examples/feature/tests-non-numerics/example-combo-bar-nonnumeric.json +396 -230
  3. package/examples/private/line-issue.json +497 -0
  4. package/index.html +6 -3
  5. package/package.json +2 -2
  6. package/src/CdcChartComponent.tsx +113 -105
  7. package/src/ConfigContext.tsx +6 -1
  8. package/src/_stories/Chart.DynamicSeries.stories.tsx +16 -1
  9. package/src/_stories/Chart.Filters.stories.tsx +19 -0
  10. package/src/components/Axis/Categorical.Axis.tsx +1 -1
  11. package/src/components/BarChart/components/BarChart.Vertical.tsx +3 -5
  12. package/src/components/BarChart/components/BarChart.jsx +24 -4
  13. package/src/components/BarChart/components/context.tsx +1 -0
  14. package/src/components/BrushChart.tsx +44 -24
  15. package/src/components/DeviationBar.jsx +2 -2
  16. package/src/components/EditorPanel/EditorPanel.tsx +2 -2
  17. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +3 -1
  18. package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +6 -1
  19. package/src/components/Legend/helpers/index.ts +10 -4
  20. package/src/components/LineChart/components/LineChart.Circle.tsx +17 -9
  21. package/src/components/LineChart/index.tsx +2 -2
  22. package/src/components/LinearChart.tsx +12 -12
  23. package/src/components/ZoomBrush.tsx +1 -1
  24. package/src/helpers/getColorScale.ts +5 -9
  25. package/src/helpers/isConvertLineToBarGraph.ts +10 -3
  26. package/src/hooks/useBarChart.ts +12 -4
  27. package/src/hooks/useMinMax.ts +7 -8
  28. package/src/hooks/useScales.ts +10 -0
  29. package/src/hooks/useTooltip.tsx +12 -1
  30. package/src/scss/main.scss +1 -1
  31. package/src/store/chart.actions.ts +40 -0
  32. package/src/store/chart.reducer.ts +83 -0
@@ -1,10 +1,18 @@
1
1
  {
2
+ "annotations": [],
2
3
  "type": "chart",
3
- "title": "Combo Bar-Line Chart",
4
- "theme": "theme-indigo",
4
+ "debugSvg": false,
5
+ "chartMessage": {
6
+ "noData": "No Data Available"
7
+ },
8
+ "title": "",
9
+ "showTitle": false,
10
+ "showDownloadMediaButton": false,
11
+ "theme": "theme-blue",
5
12
  "animate": false,
6
13
  "fontSize": "medium",
7
- "lineDatapointStyle": "always show",
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
8
16
  "barHasBorder": "false",
9
17
  "isLollipopChart": false,
10
18
  "lollipopShape": "circle",
@@ -13,31 +21,41 @@
13
21
  "barStyle": "flat",
14
22
  "roundingStyle": "standard",
15
23
  "tipRounding": "top",
24
+ "isResponsiveTicks": true,
25
+ "general": {
26
+ "annotationDropdownText": "Annotations",
27
+ "showDownloadButton": false,
28
+ "showMissingDataLabel": false,
29
+ "showSuppressedSymbol": true,
30
+ "showZeroValueData": false,
31
+ "hideNullValue": true
32
+ },
16
33
  "padding": {
17
34
  "left": 5,
18
35
  "right": 5
19
36
  },
37
+ "preliminaryData": [],
20
38
  "yAxis": {
21
39
  "hideAxis": false,
22
40
  "displayNumbersOnBar": false,
23
41
  "hideLabel": false,
24
42
  "hideTicks": false,
25
- "size": "68",
26
- "gridLines": true,
43
+ "size": "75",
44
+ "gridLines": false,
27
45
  "enablePadding": false,
28
- "min": "",
29
- "max": "",
46
+ "min": "0.1",
47
+ "max": "3",
30
48
  "labelColor": "#333",
31
49
  "tickLabelColor": "#333",
32
50
  "tickColor": "#333",
33
51
  "rightHideAxis": true,
34
- "rightAxisSize": 50,
52
+ "rightAxisSize": 0,
35
53
  "rightLabel": "",
36
54
  "rightLabelOffsetSize": 0,
37
55
  "rightAxisLabelColor": "#333",
38
56
  "rightAxisTickLabelColor": "#333",
39
57
  "rightAxisTickColor": "#333",
40
- "numTicks": "",
58
+ "numTicks": "6",
41
59
  "axisPadding": 0,
42
60
  "scalePadding": 10,
43
61
  "tickRotation": 0,
@@ -45,26 +63,54 @@
45
63
  "shoMissingDataLabel": true,
46
64
  "showMissingDataLine": true,
47
65
  "categories": [],
48
- "isLegendValue": false,
49
- "label": "Y-Axis Label Example"
66
+ "label": "Reported cases per 100,000 Population",
67
+ "type": "linear"
68
+ },
69
+ "boxplot": {
70
+ "plots": [],
71
+ "borders": "true",
72
+ "plotOutlierValues": false,
73
+ "plotNonOutlierValues": true,
74
+ "labels": {
75
+ "q1": "Lower Quartile",
76
+ "q2": "q2",
77
+ "q3": "Upper Quartile",
78
+ "q4": "q4",
79
+ "minimum": "Minimum",
80
+ "maximum": "Maximum",
81
+ "mean": "Mean",
82
+ "median": "Median",
83
+ "sd": "Standard Deviation",
84
+ "iqr": "Interquartile Range",
85
+ "count": "Count",
86
+ "outliers": "Outliers",
87
+ "values": "Values",
88
+ "lowerBounds": "Lower Bounds",
89
+ "upperBounds": "Upper Bounds"
90
+ }
50
91
  },
51
92
  "topAxis": {
52
93
  "hasLine": false
53
94
  },
54
- "barThickness": "0.5",
95
+ "isLegendValue": false,
96
+ "barThickness": 0.35,
55
97
  "barHeight": 25,
56
- "height": "332",
98
+ "barSpace": 15,
99
+ "heights": {
100
+ "vertical": 300,
101
+ "horizontal": 750
102
+ },
57
103
  "xAxis": {
58
104
  "sortDates": false,
59
105
  "anchors": [],
60
- "type": "date",
106
+ "type": "categorical",
61
107
  "showTargetLabel": true,
62
108
  "targetLabel": "Target",
63
109
  "hideAxis": false,
64
110
  "hideLabel": false,
65
111
  "hideTicks": false,
66
- "size": "78",
67
- "tickRotation": "25",
112
+ "size": 75,
113
+ "tickRotation": 0,
68
114
  "min": "",
69
115
  "max": "",
70
116
  "labelColor": "#333",
@@ -78,13 +124,11 @@
78
124
  "padding": 5,
79
125
  "showYearsOnce": false,
80
126
  "sortByRecentDate": false,
81
- "isLegendValue": false,
82
- "dataKey": "Date",
83
- "label": "X-Axis Example Label",
84
- "dateParseFormat": "%d/%m/%Y",
85
- "dateDisplayFormat": "%d/%m/%Y",
86
- "axisBBox": 96.9543685913086,
87
- "tickWidthMax": 86
127
+ "dataKey": "Year",
128
+ "label": "Year",
129
+ "manual": true,
130
+ "axisBBox": 50.90235137939453,
131
+ "tickWidthMax": 39
88
132
  },
89
133
  "table": {
90
134
  "label": "Data Table",
@@ -97,19 +141,20 @@
97
141
  "showDownloadLinkBelow": true,
98
142
  "indexLabel": "",
99
143
  "download": true,
100
- "showVertical": true,
144
+ "showVertical": false,
101
145
  "dateDisplayFormat": "",
102
146
  "showMissingDataLabel": true,
103
147
  "showSuppressedSymbol": true,
104
148
  "show": true
105
149
  },
106
-
107
150
  "orientation": "vertical",
151
+ "color": "pinkpurple",
152
+ "columns": {},
108
153
  "legend": {
109
154
  "hide": false,
110
- "behavior": "highlight",
155
+ "behavior": "isolate",
111
156
  "axisAlign": true,
112
- "singleRow": false,
157
+ "singleRow": true,
113
158
  "colorCode": "",
114
159
  "reverseLabelOrder": false,
115
160
  "description": "",
@@ -118,14 +163,14 @@
118
163
  "dynamicLegendItemLimit": 5,
119
164
  "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
120
165
  "dynamicLegendChartMessage": "Select Options from the Legend",
121
- "label": "Data Type",
166
+ "label": "",
122
167
  "lineMode": false,
123
168
  "verticalSorted": false,
124
169
  "highlightOnHover": false,
125
170
  "hideSuppressedLabels": false,
126
171
  "hideSuppressionLink": false,
127
172
  "seriesHighlight": [],
128
- "style": "lines",
173
+ "style": "boxes",
129
174
  "subStyle": "linear blocks",
130
175
  "shape": "circle",
131
176
  "tickRotation": "",
@@ -133,15 +178,22 @@
133
178
  "side": false,
134
179
  "topBottom": true
135
180
  },
136
- "position": "right",
137
- "hasShape": true
181
+ "position": "top"
182
+ },
183
+ "brush": {
184
+ "height": 25,
185
+ "active": false
138
186
  },
139
187
  "exclusions": {
140
188
  "active": false,
141
189
  "keys": []
142
190
  },
143
- "palette": "qualitative4",
191
+ "palette": "qualitative-bold",
144
192
  "isPaletteReversed": false,
193
+ "twoColor": {
194
+ "palette": "monochrome-1",
195
+ "isPaletteReversed": false
196
+ },
145
197
  "labels": false,
146
198
  "dataFormat": {
147
199
  "commas": false,
@@ -150,7 +202,8 @@
150
202
  "abbreviated": false,
151
203
  "bottomSuffix": "",
152
204
  "bottomPrefix": "",
153
- "bottomAbbreviated": false
205
+ "bottomAbbreviated": false,
206
+ "roundTo": "1"
154
207
  },
155
208
  "confidenceKeys": {},
156
209
  "visual": {
@@ -159,214 +212,44 @@
159
212
  "background": true,
160
213
  "verticalHoverLine": false,
161
214
  "horizontalHoverLine": false,
162
- "lineDatapointSymbol": "standard"
215
+ "lineDatapointSymbol": "none",
216
+ "maximumShapeAmount": 7
163
217
  },
164
- "data": [
165
- {
166
- "Date": "1/15/2016",
167
- "Data 1": "N/A",
168
- "Data 2": "110",
169
- "Data 3": "100",
170
- "Data 4": "90",
171
- "Data 5": "00",
172
- "Data 6": "190",
173
- "Data 7": "00",
174
- "Data 8": "40",
175
- "Monthly-Goal": "100"
176
- },
177
- {
178
- "Date": "2/15/2016",
179
- "Data 1": "100",
180
- "Data 2": "goop",
181
- "Data 3": "100",
182
- "Data 4": "100",
183
- "Data 5": "10",
184
- "Data 6": "590",
185
- "Data 7": "44",
186
- "Data 8": "10",
187
- "Monthly-Goal": "100"
188
- },
189
- {
190
- "Date": "3/15/2016",
191
- "Data 1": "",
192
- "Data 2": "90",
193
- "Data 3": "100.5",
194
- "Data 4": "120",
195
- "Data 5": "50",
196
- "Data 6": "66",
197
- "Data 7": "12",
198
- "Data 8": "123",
199
- "Monthly-Goal": "110"
200
- },
201
- {
202
- "Date": "4/15/2016",
203
- "Data 1": "80",
204
- "Data 2": "2,00",
205
- "Data 3": "110",
206
- "Data 4": "120",
207
- "Data 5": "50",
208
- "Data 6": "190",
209
- "Data 7": "99",
210
- "Data 8": "33",
211
- "Monthly-Goal": "110"
212
- },
213
- {
214
- "Date": "5/15/2016",
215
- "Data 1": "70",
216
- "Data 2": "90",
217
- "Data 3": "110",
218
- "Data 4": "130",
219
- "Data 5": "12",
220
- "Data 6": "90",
221
- "Data 7": "60",
222
- "Data 8": "30",
223
- "Monthly-Goal": "120"
224
- },
225
- {
226
- "Date": "6/15/2016",
227
- "Data 1": "100",
228
- "Data 2": "120",
229
- "Data 3": "120",
230
- "Data 4": "130",
231
- "Data 5": "90",
232
- "Data 6": "190",
233
- "Data 7": "30",
234
- "Data 8": "10",
235
- "Monthly-Goal": "120"
236
- },
237
- {
238
- "Date": "7/15/2016",
239
- "Data 1": "zip",
240
- "Data 2": null,
241
- "Data 3": "120",
242
- "Data 4": "130",
243
- "Data 5": "90",
244
- "Data 6": "90",
245
- "Data 7": "20",
246
- "Data 8": "40",
247
- "Monthly-Goal": "130"
248
- },
249
- {
250
- "Date": "8/15/2016",
251
- "Data 1": "110",
252
- "Data 2": "130",
253
- "Data 3": "120",
254
- "Data 4": "140",
255
- "Data 5": "80",
256
- "Data 6": "10",
257
- "Data 7": "11",
258
- "Data 8": "4",
259
- "Monthly-Goal": "130"
260
- },
261
- {
262
- "Date": "9/15/2016",
263
- "Data 1": "120",
264
- "Data 2": "130",
265
- "Data 3": "120",
266
- "Data 4": "150",
267
- "Data 5": "70",
268
- "Data 6": "10",
269
- "Data 7": "00",
270
- "Data 8": "40",
271
- "Monthly-Goal": "140"
272
- }
273
- ],
274
- "visualizationType": "Line",
218
+ "useLogScale": false,
219
+ "filterBehavior": "Filter Change",
220
+ "highlightedBarValues": [],
275
221
  "series": [
276
222
  {
277
- "dataKey": "Data 3",
223
+ "dataKey": "American Indian/Alaska Native",
278
224
  "type": "Line",
279
225
  "axis": "Left",
280
226
  "tooltip": true
281
227
  },
282
228
  {
283
- "dataKey": "Data 4",
229
+ "dataKey": "Asian/Pacific Islander",
230
+ "type": "Line",
231
+ "axis": "Left",
232
+ "tooltip": true
233
+ },
234
+ {
235
+ "dataKey": "Black, non-Hispanic",
236
+ "type": "Line",
237
+ "axis": "Left",
238
+ "tooltip": true
239
+ },
240
+ {
241
+ "dataKey": "White, non-Hispanic",
242
+ "type": "Line",
243
+ "axis": "Left",
244
+ "tooltip": true
245
+ },
246
+ {
247
+ "dataKey": "Hispanic",
284
248
  "type": "Line",
285
249
  "axis": "Left",
286
250
  "tooltip": true
287
251
  }
288
252
  ],
289
- "description": "Note: There is an option to make the line dotted as demonstrated above",
290
- "annotations": [],
291
- "debugSvg": false,
292
- "chartMessage": {
293
- "noData": "No Data Available"
294
- },
295
- "showTitle": true,
296
- "showDownloadMediaButton": false,
297
- "lineDatapointColor": "Same as Line",
298
- "isResponsiveTicks": false,
299
- "general": {
300
- "annotationDropdownText": "Annotations",
301
- "showDownloadButton": false,
302
- "showMissingDataLabel": true,
303
- "showSuppressedSymbol": true,
304
- "showZeroValueData": true,
305
- "hideNullValue": true
306
- },
307
- "preliminaryData": [
308
- {
309
- "type": "effect",
310
- "seriesKey": "Data 4",
311
- "label": "Suppressed",
312
- "column": "Data 3",
313
- "value": "120",
314
- "style": "Open Circles",
315
- "displayTooltip": true,
316
- "displayLegend": true,
317
- "displayTable": true,
318
- "symbol": "",
319
- "iconCode": "",
320
- "lineCode": "◯",
321
- "hideBarSymbol": false,
322
- "hideLineStyle": false,
323
- "circleSize": "7",
324
- "displayGray": true
325
- }
326
- ],
327
- "boxplot": {
328
- "plots": [],
329
- "borders": "true",
330
- "plotOutlierValues": false,
331
- "plotNonOutlierValues": true,
332
- "labels": {
333
- "q1": "Lower Quartile",
334
- "q2": "q2",
335
- "q3": "Upper Quartile",
336
- "q4": "q4",
337
- "minimum": "Minimum",
338
- "maximum": "Maximum",
339
- "mean": "Mean",
340
- "median": "Median",
341
- "sd": "Standard Deviation",
342
- "iqr": "Interquartile Range",
343
- "count": "Count",
344
- "outliers": "Outliers",
345
- "values": "Values",
346
- "lowerBounds": "Lower Bounds",
347
- "upperBounds": "Upper Bounds"
348
- }
349
- },
350
- "isLegendValue": false,
351
- "barSpace": 15,
352
- "heights": {
353
- "vertical": 300,
354
- "horizontal": 750
355
- },
356
- "color": "pinkpurple",
357
- "columns": {},
358
- "brush": {
359
- "height": 45,
360
- "active": false
361
- },
362
- "twoColor": {
363
- "palette": "monochrome-1",
364
- "isPaletteReversed": false
365
- },
366
- "filters": [],
367
- "useLogScale": false,
368
- "filterBehavior": "Filter Change",
369
- "highlightedBarValues": [],
370
253
  "tooltips": {
371
254
  "opacity": 90,
372
255
  "singleSeries": false,
@@ -461,9 +344,292 @@
461
344
  },
462
345
  "data": []
463
346
  },
347
+ "errors": [],
348
+ "currentViewport": "lg",
349
+ "id": 4,
350
+ "category": "Charts",
351
+ "label": "Line",
352
+ "subType": "Line",
353
+ "icon": {
354
+ "key": null,
355
+ "ref": null,
356
+ "props": {},
357
+ "_owner": null
358
+ },
359
+ "content": "Present one or more data trends over time.",
360
+ "visualizationType": "Line",
361
+ "datasets": {},
362
+ "activeVizButtonID": 4,
363
+ "data": [
364
+ {
365
+ "Year": "2007",
366
+ "American Indian/Alaska Native": "1.4",
367
+ "Asian/Pacific Islander": "0.9",
368
+ "Black, non-Hispanic": "2.3",
369
+ "White, non-Hispanic": "1",
370
+ "Hispanic": "1"
371
+ },
372
+ {
373
+ "Year": "2008",
374
+ "American Indian/Alaska Native": "1.8",
375
+ "Asian/Pacific Islander": "0.8",
376
+ "Black, non-Hispanic": "2.2",
377
+ "White, non-Hispanic": "0.9",
378
+ "Hispanic": "0.8"
379
+ },
380
+ {
381
+ "Year": "2009",
382
+ "American Indian/Alaska Native": "1",
383
+ "Asian/Pacific Islander": "0.7",
384
+ "Black, non-Hispanic": "1.7",
385
+ "White, non-Hispanic": "0.8",
386
+ "Hispanic": "0.7"
387
+ },
388
+ {
389
+ "Year": "2010",
390
+ "American Indian/Alaska Native": "1.1",
391
+ "Asian/Pacific Islander": "0.6",
392
+ "Black, non-Hispanic": "1.7",
393
+ "White, non-Hispanic": "0.8",
394
+ "Hispanic": "0.6"
395
+ },
396
+ {
397
+ "Year": "2011",
398
+ "American Indian/Alaska Native": "0.5",
399
+ "Asian/Pacific Islander": "0.4",
400
+ "Black, non-Hispanic": "1.4",
401
+ "White, non-Hispanic": "0.8",
402
+ "Hispanic": "0.4"
403
+ },
404
+ {
405
+ "Year": "2012",
406
+ "American Indian/Alaska Native": "0.7",
407
+ "Asian/Pacific Islander": "0.4",
408
+ "Black, non-Hispanic": "1.1",
409
+ "White, non-Hispanic": "0.8",
410
+ "Hispanic": "0.4"
411
+ },
412
+ {
413
+ "Year": "2013",
414
+ "American Indian/Alaska Native": "0.7",
415
+ "Asian/Pacific Islander": "0.3",
416
+ "Black, non-Hispanic": "0.9",
417
+ "White, non-Hispanic": "0.9",
418
+ "Hispanic": "0.4"
419
+ },
420
+ {
421
+ "Year": "2014",
422
+ "American Indian/Alaska Native": "0.8",
423
+ "Asian/Pacific Islander": "0.3",
424
+ "Black, non-Hispanic": "0.8",
425
+ "White, non-Hispanic": "0.9",
426
+ "Hispanic": "0.3"
427
+ },
428
+ {
429
+ "Year": "2015",
430
+ "American Indian/Alaska Native": "0.7",
431
+ "Asian/Pacific Islander": "0.4",
432
+ "Black, non-Hispanic": "1",
433
+ "White, non-Hispanic": "1.1",
434
+ "Hispanic": "0.3"
435
+ },
436
+ {
437
+ "Year": "2016",
438
+ "American Indian/Alaska Native": "0.5",
439
+ "Asian/Pacific Islander": "0.3",
440
+ "Black, non-Hispanic": "0.9",
441
+ "White, non-Hispanic": "1",
442
+ "Hispanic": "0.3"
443
+ },
444
+ {
445
+ "Year": "2017",
446
+ "American Indian/Alaska Native": "0.7",
447
+ "Asian/Pacific Islander": "0.3",
448
+ "Black, non-Hispanic": "1",
449
+ "White, non-Hispanic": "1.1",
450
+ "Hispanic": "0.3"
451
+ },
452
+ {
453
+ "Year": "2018",
454
+ "American Indian/Alaska Native": "0.9",
455
+ "Asian/Pacific Islander": "0.3",
456
+ "Black, non-Hispanic": "1",
457
+ "White, non-Hispanic": "1",
458
+ "Hispanic": "0.4"
459
+ },
460
+ {
461
+ "Year": "2019",
462
+ "American Indian/Alaska Native": "0.6",
463
+ "Asian/Pacific Islander": "0.3",
464
+ "Black, non-Hispanic": "0.9",
465
+ "White, non-Hispanic": "1",
466
+ "Hispanic": "0.4"
467
+ },
468
+ {
469
+ "Year": "2020",
470
+ "American Indian/Alaska Native": "0.4",
471
+ "Asian/Pacific Islander": "0.2",
472
+ "Black, non-Hispanic": "0.7",
473
+ "White, non-Hispanic": "0.7",
474
+ "Hispanic": "0.3"
475
+ },
476
+ {
477
+ "Year": "2021",
478
+ "American Indian/Alaska Native": "0.4",
479
+ "Asian/Pacific Islander": "0.2",
480
+ "Black, non-Hispanic": "0.9",
481
+ "White, non-Hispanic": "0.6",
482
+ "Hispanic": "0.4"
483
+ },
484
+ {
485
+ "Year": "2022",
486
+ "American Indian/Alaska Native": "0.4",
487
+ "Asian/Pacific Islander": "0.3",
488
+ "Black, non-Hispanic": "1",
489
+ "White, non-Hispanic": "0.6",
490
+ "Hispanic": "0.4"
491
+ }
492
+ ],
493
+ "dataFileName": "chart_data 2-6.csv",
494
+ "dataFileSourceType": "file",
495
+ "dataDescription": {
496
+ "horizontal": false,
497
+ "series": false
498
+ },
464
499
  "version": "4.25.1",
500
+ "dynamicMarginTop": 0,
501
+ "formattedData": [
502
+ {
503
+ "Year": "2007",
504
+ "American Indian/Alaska Native": "1.4",
505
+ "Asian/Pacific Islander": "0.9",
506
+ "Black, non-Hispanic": "2.3",
507
+ "White, non-Hispanic": "1",
508
+ "Hispanic": "1"
509
+ },
510
+ {
511
+ "Year": "2008",
512
+ "American Indian/Alaska Native": "1.8",
513
+ "Asian/Pacific Islander": "0.8",
514
+ "Black, non-Hispanic": "2.2",
515
+ "White, non-Hispanic": "0.9",
516
+ "Hispanic": "0.8"
517
+ },
518
+ {
519
+ "Year": "2009",
520
+ "American Indian/Alaska Native": "1",
521
+ "Asian/Pacific Islander": "0.7",
522
+ "Black, non-Hispanic": "1.7",
523
+ "White, non-Hispanic": "0.8",
524
+ "Hispanic": "0.7"
525
+ },
526
+ {
527
+ "Year": "2010",
528
+ "American Indian/Alaska Native": "1.1",
529
+ "Asian/Pacific Islander": "0.6",
530
+ "Black, non-Hispanic": "1.7",
531
+ "White, non-Hispanic": "0.8",
532
+ "Hispanic": "0.6"
533
+ },
534
+ {
535
+ "Year": "2011",
536
+ "American Indian/Alaska Native": "0.5",
537
+ "Asian/Pacific Islander": "0.4",
538
+ "Black, non-Hispanic": "1.4",
539
+ "White, non-Hispanic": "0.8",
540
+ "Hispanic": "0.4"
541
+ },
542
+ {
543
+ "Year": "2012",
544
+ "American Indian/Alaska Native": "0.7",
545
+ "Asian/Pacific Islander": "0.4",
546
+ "Black, non-Hispanic": "1.1",
547
+ "White, non-Hispanic": "0.8",
548
+ "Hispanic": "0.4"
549
+ },
550
+ {
551
+ "Year": "2013",
552
+ "American Indian/Alaska Native": "0.7",
553
+ "Asian/Pacific Islander": "0.3",
554
+ "Black, non-Hispanic": "0.9",
555
+ "White, non-Hispanic": "0.9",
556
+ "Hispanic": "0.4"
557
+ },
558
+ {
559
+ "Year": "2014",
560
+ "American Indian/Alaska Native": "0.8",
561
+ "Asian/Pacific Islander": "0.3",
562
+ "Black, non-Hispanic": "0.8",
563
+ "White, non-Hispanic": "0.9",
564
+ "Hispanic": "0.3"
565
+ },
566
+ {
567
+ "Year": "2015",
568
+ "American Indian/Alaska Native": "0.7",
569
+ "Asian/Pacific Islander": "0.4",
570
+ "Black, non-Hispanic": "1",
571
+ "White, non-Hispanic": "1.1",
572
+ "Hispanic": "0.3"
573
+ },
574
+ {
575
+ "Year": "2016",
576
+ "American Indian/Alaska Native": "0.5",
577
+ "Asian/Pacific Islander": "0.3",
578
+ "Black, non-Hispanic": "0.9",
579
+ "White, non-Hispanic": "1",
580
+ "Hispanic": "0.3"
581
+ },
582
+ {
583
+ "Year": "2017",
584
+ "American Indian/Alaska Native": "0.7",
585
+ "Asian/Pacific Islander": "0.3",
586
+ "Black, non-Hispanic": "1",
587
+ "White, non-Hispanic": "1.1",
588
+ "Hispanic": "0.3"
589
+ },
590
+ {
591
+ "Year": "2018",
592
+ "American Indian/Alaska Native": "0.9",
593
+ "Asian/Pacific Islander": "0.3",
594
+ "Black, non-Hispanic": "1",
595
+ "White, non-Hispanic": "1",
596
+ "Hispanic": "0.4"
597
+ },
598
+ {
599
+ "Year": "2019",
600
+ "American Indian/Alaska Native": "0.6",
601
+ "Asian/Pacific Islander": "0.3",
602
+ "Black, non-Hispanic": "0.9",
603
+ "White, non-Hispanic": "1",
604
+ "Hispanic": "0.4"
605
+ },
606
+ {
607
+ "Year": "2020",
608
+ "American Indian/Alaska Native": "0.4",
609
+ "Asian/Pacific Islander": "0.2",
610
+ "Black, non-Hispanic": "0.7",
611
+ "White, non-Hispanic": "0.7",
612
+ "Hispanic": "0.3"
613
+ },
614
+ {
615
+ "Year": "2021",
616
+ "American Indian/Alaska Native": "0.4",
617
+ "Asian/Pacific Islander": "0.2",
618
+ "Black, non-Hispanic": "0.9",
619
+ "White, non-Hispanic": "0.6",
620
+ "Hispanic": "0.4"
621
+ },
622
+ {
623
+ "Year": "2022",
624
+ "American Indian/Alaska Native": "0.4",
625
+ "Asian/Pacific Islander": "0.3",
626
+ "Black, non-Hispanic": "1",
627
+ "White, non-Hispanic": "0.6",
628
+ "Hispanic": "0.4"
629
+ }
630
+ ],
631
+ "filters": [],
465
632
  "migrations": {
466
633
  "addColorMigration": true
467
- },
468
- "dynamicMarginTop": 0
634
+ }
469
635
  }