@cdc/chart 4.24.9 → 4.24.11

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 (95) hide show
  1. package/LICENSE +201 -0
  2. package/dist/cdcchart.js +45911 -41739
  3. package/examples/feature/boxplot/boxplot-data.json +88 -22
  4. package/examples/feature/boxplot/boxplot.json +540 -16
  5. package/examples/feature/boxplot/testing.csv +7 -7
  6. package/examples/feature/sankey/sankey-example-data.json +0 -1
  7. package/examples/private/test.json +20092 -0
  8. package/index.html +4 -4
  9. package/package.json +2 -2
  10. package/src/CdcChart.tsx +209 -188
  11. package/src/_stories/Chart.CustomColors.stories.tsx +19 -0
  12. package/src/_stories/Chart.DynamicSeries.stories.tsx +27 -0
  13. package/src/_stories/Chart.Legend.Gradient.stories.tsx +74 -0
  14. package/src/_stories/Chart.stories.tsx +30 -3
  15. package/src/_stories/ChartAxisLabels.stories.tsx +20 -0
  16. package/src/_stories/ChartAxisTitles.stories.tsx +53 -0
  17. package/src/_stories/ChartEditor.stories.tsx +27 -0
  18. package/src/_stories/ChartLine.Suppression.stories.tsx +25 -0
  19. package/src/_stories/ChartPrefixSuffix.stories.tsx +159 -0
  20. package/src/_stories/_mock/boxplot_multiseries.json +647 -0
  21. package/src/_stories/_mock/dynamic_series_bar_config.json +723 -0
  22. package/src/_stories/_mock/dynamic_series_config.json +979 -0
  23. package/src/_stories/_mock/horizontal_bar.json +257 -0
  24. package/src/_stories/_mock/large_x_axis_labels.json +261 -0
  25. package/src/_stories/_mock/paired-bar.json +262 -0
  26. package/src/_stories/_mock/pie_with_data.json +255 -0
  27. package/{examples/feature/scatterplot/scatterplot.json → src/_stories/_mock/scatterplot_mock.json} +62 -92
  28. package/src/_stories/_mock/simplified_line.json +1510 -0
  29. package/src/_stories/_mock/suppression_mock.json +1549 -0
  30. package/src/components/Annotations/components/AnnotationDraggable.tsx +0 -3
  31. package/src/components/Annotations/components/AnnotationDropdown.tsx +1 -1
  32. package/src/components/Axis/Categorical.Axis.tsx +22 -4
  33. package/src/components/BarChart/components/BarChart.Horizontal.tsx +95 -16
  34. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +41 -17
  35. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +43 -9
  36. package/src/components/BarChart/components/BarChart.Vertical.tsx +123 -47
  37. package/src/components/BarChart/helpers/index.ts +23 -5
  38. package/src/components/BoxPlot/BoxPlot.tsx +189 -0
  39. package/src/components/BrushChart.tsx +3 -2
  40. package/src/components/DeviationBar.jsx +58 -8
  41. package/src/components/EditorPanel/EditorPanel.tsx +127 -102
  42. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +11 -28
  43. package/src/components/EditorPanel/components/Panels/Panel.BoxPlot.tsx +51 -6
  44. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +21 -4
  45. package/src/components/EditorPanel/components/Panels/Panel.Regions.tsx +40 -9
  46. package/src/components/EditorPanel/components/Panels/Panel.Sankey.tsx +3 -3
  47. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +121 -56
  48. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +296 -35
  49. package/src/components/EditorPanel/components/panels.scss +4 -6
  50. package/src/components/EditorPanel/editor-panel.scss +0 -8
  51. package/src/components/EditorPanel/helpers/tests/updateFieldRankByValue.test.ts +38 -0
  52. package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +42 -0
  53. package/src/components/EditorPanel/useEditorPermissions.ts +16 -1
  54. package/src/components/ForestPlot/ForestPlot.tsx +2 -3
  55. package/src/components/ForestPlot/ForestPlotProps.ts +2 -0
  56. package/src/components/Legend/Legend.Component.tsx +23 -24
  57. package/src/components/Legend/Legend.Suppression.tsx +25 -20
  58. package/src/components/Legend/Legend.tsx +16 -18
  59. package/src/components/Legend/helpers/index.ts +16 -19
  60. package/src/components/LegendWrapper.tsx +3 -1
  61. package/src/components/LineChart/components/LineChart.Circle.tsx +10 -0
  62. package/src/components/LineChart/helpers.ts +48 -43
  63. package/src/components/LineChart/index.tsx +88 -82
  64. package/src/components/LinearChart.tsx +747 -562
  65. package/src/components/PairedBarChart.jsx +50 -10
  66. package/src/components/PieChart/PieChart.tsx +1 -6
  67. package/src/components/Regions/components/Regions.tsx +33 -19
  68. package/src/components/Sankey/index.tsx +50 -32
  69. package/src/components/Sankey/sankey.scss +6 -5
  70. package/src/components/Sankey/useSankeyAlert.tsx +60 -0
  71. package/src/components/ScatterPlot/ScatterPlot.jsx +20 -4
  72. package/src/components/ZoomBrush.tsx +25 -6
  73. package/src/coreStyles_chart.scss +3 -0
  74. package/src/data/initial-state.js +8 -10
  75. package/src/helpers/configHelpers.ts +28 -0
  76. package/src/helpers/handleRankByValue.ts +15 -0
  77. package/src/helpers/sizeHelpers.ts +25 -0
  78. package/src/helpers/tests/handleRankByValue.test.ts +37 -0
  79. package/src/helpers/tests/sizeHelpers.test.ts +80 -0
  80. package/src/hooks/useColorPalette.js +10 -2
  81. package/src/hooks/useLegendClasses.ts +13 -22
  82. package/src/hooks/useMinMax.ts +27 -13
  83. package/src/hooks/useReduceData.ts +43 -10
  84. package/src/hooks/useScales.ts +87 -38
  85. package/src/hooks/useTooltip.tsx +62 -53
  86. package/src/index.jsx +1 -0
  87. package/src/scss/DataTable.scss +5 -4
  88. package/src/scss/main.scss +57 -70
  89. package/src/types/ChartConfig.ts +43 -34
  90. package/src/types/ChartContext.ts +22 -15
  91. package/src/types/ForestPlot.ts +8 -0
  92. package/src/_stories/Chart.Legend.Gradient.tsx +0 -19
  93. package/src/_stories/ChartBrush.stories.tsx +0 -19
  94. package/src/components/BoxPlot/BoxPlot.jsx +0 -111
  95. package/src/components/LinearChart.jsx +0 -817
@@ -0,0 +1,979 @@
1
+ {
2
+ "annotations": [],
3
+ "type": "chart",
4
+ "debugSvg": false,
5
+ "chartMessage": {
6
+ "noData": "No Data Available"
7
+ },
8
+ "title": "",
9
+ "showTitle": true,
10
+ "showDownloadMediaButton": false,
11
+ "theme": "theme-blue",
12
+ "animate": false,
13
+ "fontSize": "medium",
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
16
+ "barHasBorder": "false",
17
+ "isLollipopChart": false,
18
+ "lollipopShape": "circle",
19
+ "lollipopColorStyle": "two-tone",
20
+ "visualizationSubType": "regular",
21
+ "barStyle": "flat",
22
+ "roundingStyle": "standard",
23
+ "tipRounding": "top",
24
+ "isResponsiveTicks": false,
25
+ "general": {
26
+ "annotationDropdownText": "Annotations",
27
+ "showDownloadButton": false,
28
+ "showMissingDataLabel": true,
29
+ "showSuppressedSymbol": true,
30
+ "showZeroValueData": true,
31
+ "hideNullValue": true
32
+ },
33
+ "padding": {
34
+ "left": 5,
35
+ "right": 5
36
+ },
37
+ "preliminaryData": [],
38
+ "yAxis": {
39
+ "hideAxis": false,
40
+ "displayNumbersOnBar": false,
41
+ "hideLabel": false,
42
+ "hideTicks": false,
43
+ "size": 50,
44
+ "gridLines": false,
45
+ "enablePadding": false,
46
+ "min": "",
47
+ "max": "",
48
+ "labelColor": "#333",
49
+ "tickLabelColor": "#333",
50
+ "tickColor": "#333",
51
+ "rightHideAxis": true,
52
+ "rightAxisSize": 0,
53
+ "rightLabel": "",
54
+ "rightLabelOffsetSize": 0,
55
+ "rightAxisLabelColor": "#333",
56
+ "rightAxisTickLabelColor": "#333",
57
+ "rightAxisTickColor": "#333",
58
+ "numTicks": "",
59
+ "axisPadding": 0,
60
+ "scalePadding": 10,
61
+ "tickRotation": 0,
62
+ "anchors": [],
63
+ "shoMissingDataLabel": true,
64
+ "showMissingDataLine": true,
65
+ "categories": []
66
+ },
67
+ "topAxis": {
68
+ "hasLine": false
69
+ },
70
+ "isLegendValue": false,
71
+ "barThickness": 0.35,
72
+ "barHeight": 25,
73
+ "barSpace": 15,
74
+ "heights": {
75
+ "vertical": 300,
76
+ "horizontal": 750
77
+ },
78
+ "xAxis": {
79
+ "sortDates": false,
80
+ "anchors": [],
81
+ "type": "categorical",
82
+ "showTargetLabel": true,
83
+ "targetLabel": "Target",
84
+ "hideAxis": false,
85
+ "hideLabel": false,
86
+ "hideTicks": false,
87
+ "size": 75,
88
+ "tickRotation": 0,
89
+ "min": "",
90
+ "max": "",
91
+ "labelColor": "#333",
92
+ "tickLabelColor": "#333",
93
+ "tickColor": "#333",
94
+ "numTicks": "",
95
+ "labelOffset": 0,
96
+ "axisPadding": 200,
97
+ "target": 0,
98
+ "maxTickRotation": 0,
99
+ "padding": 5,
100
+ "showYearsOnce": false,
101
+ "manual": true,
102
+ "dataKey": "YearStart",
103
+ "tickWidthMax": 41
104
+ },
105
+ "table": {
106
+ "label": "Data Table",
107
+ "expanded": true,
108
+ "limitHeight": false,
109
+ "height": "",
110
+ "caption": "",
111
+ "showDownloadUrl": false,
112
+ "showDataTableLink": true,
113
+ "showDownloadLinkBelow": true,
114
+ "indexLabel": "",
115
+ "download": true,
116
+ "showVertical": true,
117
+ "dateDisplayFormat": "",
118
+ "showMissingDataLabel": true,
119
+ "showSuppressedSymbol": true,
120
+ "show": true
121
+ },
122
+ "orientation": "vertical",
123
+ "color": "pinkpurple",
124
+ "columns": {},
125
+ "legend": {
126
+ "hide": false,
127
+ "behavior": "isolate",
128
+ "axisAlign": true,
129
+ "singleRow": true,
130
+ "colorCode": "",
131
+ "reverseLabelOrder": false,
132
+ "description": "",
133
+ "dynamicLegend": false,
134
+ "dynamicLegendDefaultText": "Show All",
135
+ "dynamicLegendItemLimit": 5,
136
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
137
+ "dynamicLegendChartMessage": "Select Options from the Legend",
138
+ "label": "",
139
+ "lineMode": false,
140
+ "verticalSorted": false,
141
+ "highlightOnHover": false,
142
+ "hideSuppressedLabels": false,
143
+ "hideSuppressionLink": false,
144
+ "seriesHighlight": [],
145
+ "style": "circles",
146
+ "subStyle": "linear blocks",
147
+ "tickRotation": "",
148
+ "hideBorder": {
149
+ "side": false,
150
+ "topBottom": true
151
+ }
152
+ },
153
+ "brush": {
154
+ "height": 25,
155
+ "active": false
156
+ },
157
+ "exclusions": {
158
+ "active": false,
159
+ "keys": []
160
+ },
161
+ "palette": "qualitative-bold",
162
+ "isPaletteReversed": false,
163
+ "twoColor": {
164
+ "palette": "monochrome-1",
165
+ "isPaletteReversed": false
166
+ },
167
+ "labels": false,
168
+ "dataFormat": {
169
+ "commas": false,
170
+ "prefix": "",
171
+ "suffix": "",
172
+ "abbreviated": false,
173
+ "bottomSuffix": "",
174
+ "bottomPrefix": "",
175
+ "bottomAbbreviated": false
176
+ },
177
+ "confidenceKeys": {},
178
+ "visual": {
179
+ "border": true,
180
+ "accent": true,
181
+ "background": true,
182
+ "verticalHoverLine": false,
183
+ "horizontalHoverLine": false
184
+ },
185
+ "useLogScale": false,
186
+ "filterBehavior": "Filter Change",
187
+ "highlightedBarValues": [],
188
+ "series": [
189
+ {
190
+ "dataKey": "Data_Value",
191
+ "dynamicCategory": "Stratification1",
192
+ "type": "Line",
193
+ "axis": "Left",
194
+ "tooltip": true
195
+ }
196
+ ],
197
+ "tooltips": {
198
+ "opacity": 90,
199
+ "singleSeries": false,
200
+ "dateDisplayFormat": ""
201
+ },
202
+ "area": {
203
+ "isStacked": false
204
+ },
205
+ "filters": [],
206
+ "openModal": true,
207
+ "uid": "chart1730301714473",
208
+ "visualizationType": "Line",
209
+ "dataDescription": {
210
+ "horizontal": false,
211
+ "series": false
212
+ },
213
+ "formattedData": [
214
+ {
215
+ "YearStart": 2015,
216
+ "Data_Value": 40.8,
217
+ "Low_Confidence_Limit": 38.6,
218
+ "High_Confidence_Limit": 43,
219
+ "StratficationCategory1": "Age Group",
220
+ "Stratification1": "50-64 years",
221
+ "StratificationCategory2": "Overall",
222
+ "Stratification2": "Overall",
223
+ "FootnoteText": "",
224
+ "URL": "",
225
+ "FootnoteHeading": "",
226
+ "SeriesDesc": "50-64 yearsOverall"
227
+ },
228
+ {
229
+ "YearStart": 2015,
230
+ "Data_Value": 56.4,
231
+ "Low_Confidence_Limit": 54.1,
232
+ "High_Confidence_Limit": 58.6,
233
+ "StratficationCategory1": "Age Group",
234
+ "Stratification1": "65 years or older",
235
+ "StratificationCategory2": "Overall",
236
+ "Stratification2": "Overall",
237
+ "FootnoteText": "",
238
+ "URL": "",
239
+ "FootnoteHeading": "",
240
+ "SeriesDesc": "65 years or olderOverall"
241
+ },
242
+ {
243
+ "YearStart": 2015,
244
+ "Data_Value": 47.4,
245
+ "Low_Confidence_Limit": 45.8,
246
+ "High_Confidence_Limit": 49,
247
+ "StratficationCategory1": "Age Group",
248
+ "Stratification1": "Overall",
249
+ "StratificationCategory2": "Overall",
250
+ "Stratification2": "Overall",
251
+ "FootnoteText": "",
252
+ "URL": "",
253
+ "FootnoteHeading": "",
254
+ "SeriesDesc": "OverallOverall"
255
+ },
256
+ {
257
+ "YearStart": 2017,
258
+ "Data_Value": 41.5,
259
+ "Low_Confidence_Limit": 39.4,
260
+ "High_Confidence_Limit": 43.6,
261
+ "StratficationCategory1": "Age Group",
262
+ "Stratification1": "50-64 years",
263
+ "StratificationCategory2": "Overall",
264
+ "Stratification2": "Overall",
265
+ "FootnoteText": "",
266
+ "URL": "",
267
+ "FootnoteHeading": "",
268
+ "SeriesDesc": "50-64 yearsOverall"
269
+ },
270
+ {
271
+ "YearStart": 2017,
272
+ "Data_Value": 57.2,
273
+ "Low_Confidence_Limit": 55.2,
274
+ "High_Confidence_Limit": 59.2,
275
+ "StratficationCategory1": "Age Group",
276
+ "Stratification1": "65 years or older",
277
+ "StratificationCategory2": "Overall",
278
+ "Stratification2": "Overall",
279
+ "FootnoteText": "",
280
+ "URL": "",
281
+ "FootnoteHeading": "",
282
+ "SeriesDesc": "65 years or olderOverall"
283
+ },
284
+ {
285
+ "YearStart": 2017,
286
+ "Data_Value": 48.5,
287
+ "Low_Confidence_Limit": 47,
288
+ "High_Confidence_Limit": 50,
289
+ "StratficationCategory1": "Age Group",
290
+ "Stratification1": "Overall",
291
+ "StratificationCategory2": "Overall",
292
+ "Stratification2": "Overall",
293
+ "FootnoteText": "",
294
+ "URL": "",
295
+ "FootnoteHeading": "",
296
+ "SeriesDesc": "OverallOverall"
297
+ },
298
+ {
299
+ "YearStart": 2019,
300
+ "Data_Value": 42.2,
301
+ "Low_Confidence_Limit": 39.9,
302
+ "High_Confidence_Limit": 44.5,
303
+ "StratficationCategory1": "Age Group",
304
+ "Stratification1": "50-64 years",
305
+ "StratificationCategory2": "Overall",
306
+ "Stratification2": "Overall",
307
+ "FootnoteText": "",
308
+ "URL": "",
309
+ "FootnoteHeading": "",
310
+ "SeriesDesc": "50-64 yearsOverall"
311
+ },
312
+ {
313
+ "YearStart": 2019,
314
+ "Data_Value": 56.2,
315
+ "Low_Confidence_Limit": 54.1,
316
+ "High_Confidence_Limit": 58.2,
317
+ "StratficationCategory1": "Age Group",
318
+ "Stratification1": "65 years or older",
319
+ "StratificationCategory2": "Overall",
320
+ "Stratification2": "Overall",
321
+ "FootnoteText": "",
322
+ "URL": "",
323
+ "FootnoteHeading": "",
324
+ "SeriesDesc": "65 years or olderOverall"
325
+ },
326
+ {
327
+ "YearStart": 2019,
328
+ "Data_Value": 48.6,
329
+ "Low_Confidence_Limit": 47.1,
330
+ "High_Confidence_Limit": 50.2,
331
+ "StratficationCategory1": "Age Group",
332
+ "Stratification1": "Overall",
333
+ "StratificationCategory2": "Overall",
334
+ "Stratification2": "Overall",
335
+ "FootnoteText": "",
336
+ "URL": "",
337
+ "FootnoteHeading": "",
338
+ "SeriesDesc": "OverallOverall"
339
+ },
340
+ {
341
+ "YearStart": 2020,
342
+ "Data_Value": 41.9,
343
+ "Low_Confidence_Limit": 39.1,
344
+ "High_Confidence_Limit": 44.7,
345
+ "StratficationCategory1": "Age Group",
346
+ "Stratification1": "50-64 years",
347
+ "StratificationCategory2": "Overall",
348
+ "Stratification2": "Overall",
349
+ "FootnoteText": "",
350
+ "URL": "",
351
+ "FootnoteHeading": "",
352
+ "SeriesDesc": "50-64 yearsOverall"
353
+ },
354
+ {
355
+ "YearStart": 2020,
356
+ "Data_Value": 56.9,
357
+ "Low_Confidence_Limit": 54.4,
358
+ "High_Confidence_Limit": 59.3,
359
+ "StratficationCategory1": "Age Group",
360
+ "Stratification1": "65 years or older",
361
+ "StratificationCategory2": "Overall",
362
+ "Stratification2": "Overall",
363
+ "FootnoteText": "",
364
+ "URL": "",
365
+ "FootnoteHeading": "",
366
+ "SeriesDesc": "65 years or olderOverall"
367
+ },
368
+ {
369
+ "YearStart": 2020,
370
+ "Data_Value": 49,
371
+ "Low_Confidence_Limit": 47.1,
372
+ "High_Confidence_Limit": 50.8,
373
+ "StratficationCategory1": "Age Group",
374
+ "Stratification1": "Overall",
375
+ "StratificationCategory2": "Overall",
376
+ "Stratification2": "Overall",
377
+ "FootnoteText": "",
378
+ "URL": "",
379
+ "FootnoteHeading": "",
380
+ "SeriesDesc": "OverallOverall"
381
+ },
382
+ {
383
+ "YearStart": 2021,
384
+ "Data_Value": 40.4,
385
+ "Low_Confidence_Limit": 38.1,
386
+ "High_Confidence_Limit": 42.7,
387
+ "StratficationCategory1": "Age Group",
388
+ "Stratification1": "50-64 years",
389
+ "StratificationCategory2": "Overall",
390
+ "Stratification2": "Overall",
391
+ "FootnoteText": "",
392
+ "URL": "",
393
+ "FootnoteHeading": "",
394
+ "SeriesDesc": "50-64 yearsOverall"
395
+ },
396
+ {
397
+ "YearStart": 2021,
398
+ "Data_Value": 54.2,
399
+ "Low_Confidence_Limit": 52,
400
+ "High_Confidence_Limit": 56.4,
401
+ "StratficationCategory1": "Age Group",
402
+ "Stratification1": "65 years or older",
403
+ "StratificationCategory2": "Overall",
404
+ "Stratification2": "Overall",
405
+ "FootnoteText": "",
406
+ "URL": "",
407
+ "FootnoteHeading": "",
408
+ "SeriesDesc": "65 years or olderOverall"
409
+ },
410
+ {
411
+ "YearStart": 2021,
412
+ "Data_Value": 47.1,
413
+ "Low_Confidence_Limit": 45.5,
414
+ "High_Confidence_Limit": 48.7,
415
+ "StratficationCategory1": "Age Group",
416
+ "Stratification1": "Overall",
417
+ "StratificationCategory2": "Overall",
418
+ "Stratification2": "Overall",
419
+ "FootnoteText": "",
420
+ "URL": "",
421
+ "FootnoteHeading": "",
422
+ "SeriesDesc": "OverallOverall"
423
+ },
424
+ {
425
+ "YearStart": 2022,
426
+ "Data_Value": 39.1,
427
+ "Low_Confidence_Limit": 36.8,
428
+ "High_Confidence_Limit": 41.3,
429
+ "StratficationCategory1": "Age Group",
430
+ "Stratification1": "50-64 years",
431
+ "StratificationCategory2": "Overall",
432
+ "Stratification2": "Overall",
433
+ "FootnoteText": "",
434
+ "URL": "",
435
+ "FootnoteHeading": "",
436
+ "SeriesDesc": "50-64 yearsOverall"
437
+ },
438
+ {
439
+ "YearStart": 2022,
440
+ "Data_Value": 56.5,
441
+ "Low_Confidence_Limit": 54.6,
442
+ "High_Confidence_Limit": 58.4,
443
+ "StratficationCategory1": "Age Group",
444
+ "Stratification1": "65 years or older",
445
+ "StratificationCategory2": "Overall",
446
+ "Stratification2": "Overall",
447
+ "FootnoteText": "",
448
+ "URL": "",
449
+ "FootnoteHeading": "",
450
+ "SeriesDesc": "65 years or olderOverall"
451
+ },
452
+ {
453
+ "YearStart": 2022,
454
+ "Data_Value": 47.7,
455
+ "Low_Confidence_Limit": 46.2,
456
+ "High_Confidence_Limit": 49.2,
457
+ "StratficationCategory1": "Age Group",
458
+ "Stratification1": "Overall",
459
+ "StratificationCategory2": "Overall",
460
+ "Stratification2": "Overall",
461
+ "FootnoteText": "",
462
+ "URL": "",
463
+ "FootnoteHeading": "",
464
+ "SeriesDesc": "OverallOverall"
465
+ }
466
+ ],
467
+ "dataKey": "ADHAP_Michigan-data.csv",
468
+ "data": [
469
+ {
470
+ "YearStart": 2015,
471
+ "Data_Value": 40.8,
472
+ "Low_Confidence_Limit": 38.6,
473
+ "High_Confidence_Limit": 43,
474
+ "StratficationCategory1": "Age Group",
475
+ "Stratification1": "50-64 years",
476
+ "StratificationCategory2": "Overall",
477
+ "Stratification2": "Overall",
478
+ "FootnoteText": "",
479
+ "URL": "",
480
+ "FootnoteHeading": "",
481
+ "SeriesDesc": "50-64 yearsOverall"
482
+ },
483
+ {
484
+ "YearStart": 2015,
485
+ "Data_Value": 56.4,
486
+ "Low_Confidence_Limit": 54.1,
487
+ "High_Confidence_Limit": 58.6,
488
+ "StratficationCategory1": "Age Group",
489
+ "Stratification1": "65 years or older",
490
+ "StratificationCategory2": "Overall",
491
+ "Stratification2": "Overall",
492
+ "FootnoteText": "",
493
+ "URL": "",
494
+ "FootnoteHeading": "",
495
+ "SeriesDesc": "65 years or olderOverall"
496
+ },
497
+ {
498
+ "YearStart": 2015,
499
+ "Data_Value": 47.4,
500
+ "Low_Confidence_Limit": 45.8,
501
+ "High_Confidence_Limit": 49,
502
+ "StratficationCategory1": "Age Group",
503
+ "Stratification1": "Overall",
504
+ "StratificationCategory2": "Overall",
505
+ "Stratification2": "Overall",
506
+ "FootnoteText": "",
507
+ "URL": "",
508
+ "FootnoteHeading": "",
509
+ "SeriesDesc": "OverallOverall"
510
+ },
511
+ {
512
+ "YearStart": 2017,
513
+ "Data_Value": 41.5,
514
+ "Low_Confidence_Limit": 39.4,
515
+ "High_Confidence_Limit": 43.6,
516
+ "StratficationCategory1": "Age Group",
517
+ "Stratification1": "50-64 years",
518
+ "StratificationCategory2": "Overall",
519
+ "Stratification2": "Overall",
520
+ "FootnoteText": "",
521
+ "URL": "",
522
+ "FootnoteHeading": "",
523
+ "SeriesDesc": "50-64 yearsOverall"
524
+ },
525
+ {
526
+ "YearStart": 2017,
527
+ "Data_Value": 57.2,
528
+ "Low_Confidence_Limit": 55.2,
529
+ "High_Confidence_Limit": 59.2,
530
+ "StratficationCategory1": "Age Group",
531
+ "Stratification1": "65 years or older",
532
+ "StratificationCategory2": "Overall",
533
+ "Stratification2": "Overall",
534
+ "FootnoteText": "",
535
+ "URL": "",
536
+ "FootnoteHeading": "",
537
+ "SeriesDesc": "65 years or olderOverall"
538
+ },
539
+ {
540
+ "YearStart": 2017,
541
+ "Data_Value": 48.5,
542
+ "Low_Confidence_Limit": 47,
543
+ "High_Confidence_Limit": 50,
544
+ "StratficationCategory1": "Age Group",
545
+ "Stratification1": "Overall",
546
+ "StratificationCategory2": "Overall",
547
+ "Stratification2": "Overall",
548
+ "FootnoteText": "",
549
+ "URL": "",
550
+ "FootnoteHeading": "",
551
+ "SeriesDesc": "OverallOverall"
552
+ },
553
+ {
554
+ "YearStart": 2019,
555
+ "Data_Value": 42.2,
556
+ "Low_Confidence_Limit": 39.9,
557
+ "High_Confidence_Limit": 44.5,
558
+ "StratficationCategory1": "Age Group",
559
+ "Stratification1": "50-64 years",
560
+ "StratificationCategory2": "Overall",
561
+ "Stratification2": "Overall",
562
+ "FootnoteText": "",
563
+ "URL": "",
564
+ "FootnoteHeading": "",
565
+ "SeriesDesc": "50-64 yearsOverall"
566
+ },
567
+ {
568
+ "YearStart": 2019,
569
+ "Data_Value": 56.2,
570
+ "Low_Confidence_Limit": 54.1,
571
+ "High_Confidence_Limit": 58.2,
572
+ "StratficationCategory1": "Age Group",
573
+ "Stratification1": "65 years or older",
574
+ "StratificationCategory2": "Overall",
575
+ "Stratification2": "Overall",
576
+ "FootnoteText": "",
577
+ "URL": "",
578
+ "FootnoteHeading": "",
579
+ "SeriesDesc": "65 years or olderOverall"
580
+ },
581
+ {
582
+ "YearStart": 2019,
583
+ "Data_Value": 48.6,
584
+ "Low_Confidence_Limit": 47.1,
585
+ "High_Confidence_Limit": 50.2,
586
+ "StratficationCategory1": "Age Group",
587
+ "Stratification1": "Overall",
588
+ "StratificationCategory2": "Overall",
589
+ "Stratification2": "Overall",
590
+ "FootnoteText": "",
591
+ "URL": "",
592
+ "FootnoteHeading": "",
593
+ "SeriesDesc": "OverallOverall"
594
+ },
595
+ {
596
+ "YearStart": 2020,
597
+ "Data_Value": 41.9,
598
+ "Low_Confidence_Limit": 39.1,
599
+ "High_Confidence_Limit": 44.7,
600
+ "StratficationCategory1": "Age Group",
601
+ "Stratification1": "50-64 years",
602
+ "StratificationCategory2": "Overall",
603
+ "Stratification2": "Overall",
604
+ "FootnoteText": "",
605
+ "URL": "",
606
+ "FootnoteHeading": "",
607
+ "SeriesDesc": "50-64 yearsOverall"
608
+ },
609
+ {
610
+ "YearStart": 2020,
611
+ "Data_Value": 56.9,
612
+ "Low_Confidence_Limit": 54.4,
613
+ "High_Confidence_Limit": 59.3,
614
+ "StratficationCategory1": "Age Group",
615
+ "Stratification1": "65 years or older",
616
+ "StratificationCategory2": "Overall",
617
+ "Stratification2": "Overall",
618
+ "FootnoteText": "",
619
+ "URL": "",
620
+ "FootnoteHeading": "",
621
+ "SeriesDesc": "65 years or olderOverall"
622
+ },
623
+ {
624
+ "YearStart": 2020,
625
+ "Data_Value": 49,
626
+ "Low_Confidence_Limit": 47.1,
627
+ "High_Confidence_Limit": 50.8,
628
+ "StratficationCategory1": "Age Group",
629
+ "Stratification1": "Overall",
630
+ "StratificationCategory2": "Overall",
631
+ "Stratification2": "Overall",
632
+ "FootnoteText": "",
633
+ "URL": "",
634
+ "FootnoteHeading": "",
635
+ "SeriesDesc": "OverallOverall"
636
+ },
637
+ {
638
+ "YearStart": 2021,
639
+ "Data_Value": 40.4,
640
+ "Low_Confidence_Limit": 38.1,
641
+ "High_Confidence_Limit": 42.7,
642
+ "StratficationCategory1": "Age Group",
643
+ "Stratification1": "50-64 years",
644
+ "StratificationCategory2": "Overall",
645
+ "Stratification2": "Overall",
646
+ "FootnoteText": "",
647
+ "URL": "",
648
+ "FootnoteHeading": "",
649
+ "SeriesDesc": "50-64 yearsOverall"
650
+ },
651
+ {
652
+ "YearStart": 2021,
653
+ "Data_Value": 54.2,
654
+ "Low_Confidence_Limit": 52,
655
+ "High_Confidence_Limit": 56.4,
656
+ "StratficationCategory1": "Age Group",
657
+ "Stratification1": "65 years or older",
658
+ "StratificationCategory2": "Overall",
659
+ "Stratification2": "Overall",
660
+ "FootnoteText": "",
661
+ "URL": "",
662
+ "FootnoteHeading": "",
663
+ "SeriesDesc": "65 years or olderOverall"
664
+ },
665
+ {
666
+ "YearStart": 2021,
667
+ "Data_Value": 47.1,
668
+ "Low_Confidence_Limit": 45.5,
669
+ "High_Confidence_Limit": 48.7,
670
+ "StratficationCategory1": "Age Group",
671
+ "Stratification1": "Overall",
672
+ "StratificationCategory2": "Overall",
673
+ "Stratification2": "Overall",
674
+ "FootnoteText": "",
675
+ "URL": "",
676
+ "FootnoteHeading": "",
677
+ "SeriesDesc": "OverallOverall"
678
+ },
679
+ {
680
+ "YearStart": 2022,
681
+ "Data_Value": 39.1,
682
+ "Low_Confidence_Limit": 36.8,
683
+ "High_Confidence_Limit": 41.3,
684
+ "StratficationCategory1": "Age Group",
685
+ "Stratification1": "50-64 years",
686
+ "StratificationCategory2": "Overall",
687
+ "Stratification2": "Overall",
688
+ "FootnoteText": "",
689
+ "URL": "",
690
+ "FootnoteHeading": "",
691
+ "SeriesDesc": "50-64 yearsOverall"
692
+ },
693
+ {
694
+ "YearStart": 2022,
695
+ "Data_Value": 56.5,
696
+ "Low_Confidence_Limit": 54.6,
697
+ "High_Confidence_Limit": 58.4,
698
+ "StratficationCategory1": "Age Group",
699
+ "Stratification1": "65 years or older",
700
+ "StratificationCategory2": "Overall",
701
+ "Stratification2": "Overall",
702
+ "FootnoteText": "",
703
+ "URL": "",
704
+ "FootnoteHeading": "",
705
+ "SeriesDesc": "65 years or olderOverall"
706
+ },
707
+ {
708
+ "YearStart": 2022,
709
+ "Data_Value": 47.7,
710
+ "Low_Confidence_Limit": 46.2,
711
+ "High_Confidence_Limit": 49.2,
712
+ "StratficationCategory1": "Age Group",
713
+ "Stratification1": "Overall",
714
+ "StratificationCategory2": "Overall",
715
+ "Stratification2": "Overall",
716
+ "FootnoteText": "",
717
+ "URL": "",
718
+ "FootnoteHeading": "",
719
+ "SeriesDesc": "OverallOverall"
720
+ }
721
+ ],
722
+ "editing": true,
723
+ "originalFormattedData": [
724
+ {
725
+ "YearStart": 2015,
726
+ "Data_Value": 40.8,
727
+ "Low_Confidence_Limit": 38.6,
728
+ "High_Confidence_Limit": 43,
729
+ "StratficationCategory1": "Age Group",
730
+ "Stratification1": "50-64 years",
731
+ "StratificationCategory2": "Overall",
732
+ "Stratification2": "Overall",
733
+ "FootnoteText": "",
734
+ "URL": "",
735
+ "FootnoteHeading": "",
736
+ "SeriesDesc": "50-64 yearsOverall"
737
+ },
738
+ {
739
+ "YearStart": 2015,
740
+ "Data_Value": 56.4,
741
+ "Low_Confidence_Limit": 54.1,
742
+ "High_Confidence_Limit": 58.6,
743
+ "StratficationCategory1": "Age Group",
744
+ "Stratification1": "65 years or older",
745
+ "StratificationCategory2": "Overall",
746
+ "Stratification2": "Overall",
747
+ "FootnoteText": "",
748
+ "URL": "",
749
+ "FootnoteHeading": "",
750
+ "SeriesDesc": "65 years or olderOverall"
751
+ },
752
+ {
753
+ "YearStart": 2015,
754
+ "Data_Value": 47.4,
755
+ "Low_Confidence_Limit": 45.8,
756
+ "High_Confidence_Limit": 49,
757
+ "StratficationCategory1": "Age Group",
758
+ "Stratification1": "Overall",
759
+ "StratificationCategory2": "Overall",
760
+ "Stratification2": "Overall",
761
+ "FootnoteText": "",
762
+ "URL": "",
763
+ "FootnoteHeading": "",
764
+ "SeriesDesc": "OverallOverall"
765
+ },
766
+ {
767
+ "YearStart": 2017,
768
+ "Data_Value": 41.5,
769
+ "Low_Confidence_Limit": 39.4,
770
+ "High_Confidence_Limit": 43.6,
771
+ "StratficationCategory1": "Age Group",
772
+ "Stratification1": "50-64 years",
773
+ "StratificationCategory2": "Overall",
774
+ "Stratification2": "Overall",
775
+ "FootnoteText": "",
776
+ "URL": "",
777
+ "FootnoteHeading": "",
778
+ "SeriesDesc": "50-64 yearsOverall"
779
+ },
780
+ {
781
+ "YearStart": 2017,
782
+ "Data_Value": 57.2,
783
+ "Low_Confidence_Limit": 55.2,
784
+ "High_Confidence_Limit": 59.2,
785
+ "StratficationCategory1": "Age Group",
786
+ "Stratification1": "65 years or older",
787
+ "StratificationCategory2": "Overall",
788
+ "Stratification2": "Overall",
789
+ "FootnoteText": "",
790
+ "URL": "",
791
+ "FootnoteHeading": "",
792
+ "SeriesDesc": "65 years or olderOverall"
793
+ },
794
+ {
795
+ "YearStart": 2017,
796
+ "Data_Value": 48.5,
797
+ "Low_Confidence_Limit": 47,
798
+ "High_Confidence_Limit": 50,
799
+ "StratficationCategory1": "Age Group",
800
+ "Stratification1": "Overall",
801
+ "StratificationCategory2": "Overall",
802
+ "Stratification2": "Overall",
803
+ "FootnoteText": "",
804
+ "URL": "",
805
+ "FootnoteHeading": "",
806
+ "SeriesDesc": "OverallOverall"
807
+ },
808
+ {
809
+ "YearStart": 2019,
810
+ "Data_Value": 42.2,
811
+ "Low_Confidence_Limit": 39.9,
812
+ "High_Confidence_Limit": 44.5,
813
+ "StratficationCategory1": "Age Group",
814
+ "Stratification1": "50-64 years",
815
+ "StratificationCategory2": "Overall",
816
+ "Stratification2": "Overall",
817
+ "FootnoteText": "",
818
+ "URL": "",
819
+ "FootnoteHeading": "",
820
+ "SeriesDesc": "50-64 yearsOverall"
821
+ },
822
+ {
823
+ "YearStart": 2019,
824
+ "Data_Value": 56.2,
825
+ "Low_Confidence_Limit": 54.1,
826
+ "High_Confidence_Limit": 58.2,
827
+ "StratficationCategory1": "Age Group",
828
+ "Stratification1": "65 years or older",
829
+ "StratificationCategory2": "Overall",
830
+ "Stratification2": "Overall",
831
+ "FootnoteText": "",
832
+ "URL": "",
833
+ "FootnoteHeading": "",
834
+ "SeriesDesc": "65 years or olderOverall"
835
+ },
836
+ {
837
+ "YearStart": 2019,
838
+ "Data_Value": 48.6,
839
+ "Low_Confidence_Limit": 47.1,
840
+ "High_Confidence_Limit": 50.2,
841
+ "StratficationCategory1": "Age Group",
842
+ "Stratification1": "Overall",
843
+ "StratificationCategory2": "Overall",
844
+ "Stratification2": "Overall",
845
+ "FootnoteText": "",
846
+ "URL": "",
847
+ "FootnoteHeading": "",
848
+ "SeriesDesc": "OverallOverall"
849
+ },
850
+ {
851
+ "YearStart": 2020,
852
+ "Data_Value": 41.9,
853
+ "Low_Confidence_Limit": 39.1,
854
+ "High_Confidence_Limit": 44.7,
855
+ "StratficationCategory1": "Age Group",
856
+ "Stratification1": "50-64 years",
857
+ "StratificationCategory2": "Overall",
858
+ "Stratification2": "Overall",
859
+ "FootnoteText": "",
860
+ "URL": "",
861
+ "FootnoteHeading": "",
862
+ "SeriesDesc": "50-64 yearsOverall"
863
+ },
864
+ {
865
+ "YearStart": 2020,
866
+ "Data_Value": 56.9,
867
+ "Low_Confidence_Limit": 54.4,
868
+ "High_Confidence_Limit": 59.3,
869
+ "StratficationCategory1": "Age Group",
870
+ "Stratification1": "65 years or older",
871
+ "StratificationCategory2": "Overall",
872
+ "Stratification2": "Overall",
873
+ "FootnoteText": "",
874
+ "URL": "",
875
+ "FootnoteHeading": "",
876
+ "SeriesDesc": "65 years or olderOverall"
877
+ },
878
+ {
879
+ "YearStart": 2020,
880
+ "Data_Value": 49,
881
+ "Low_Confidence_Limit": 47.1,
882
+ "High_Confidence_Limit": 50.8,
883
+ "StratficationCategory1": "Age Group",
884
+ "Stratification1": "Overall",
885
+ "StratificationCategory2": "Overall",
886
+ "Stratification2": "Overall",
887
+ "FootnoteText": "",
888
+ "URL": "",
889
+ "FootnoteHeading": "",
890
+ "SeriesDesc": "OverallOverall"
891
+ },
892
+ {
893
+ "YearStart": 2021,
894
+ "Data_Value": 40.4,
895
+ "Low_Confidence_Limit": 38.1,
896
+ "High_Confidence_Limit": 42.7,
897
+ "StratficationCategory1": "Age Group",
898
+ "Stratification1": "50-64 years",
899
+ "StratificationCategory2": "Overall",
900
+ "Stratification2": "Overall",
901
+ "FootnoteText": "",
902
+ "URL": "",
903
+ "FootnoteHeading": "",
904
+ "SeriesDesc": "50-64 yearsOverall"
905
+ },
906
+ {
907
+ "YearStart": 2021,
908
+ "Data_Value": 54.2,
909
+ "Low_Confidence_Limit": 52,
910
+ "High_Confidence_Limit": 56.4,
911
+ "StratficationCategory1": "Age Group",
912
+ "Stratification1": "65 years or older",
913
+ "StratificationCategory2": "Overall",
914
+ "Stratification2": "Overall",
915
+ "FootnoteText": "",
916
+ "URL": "",
917
+ "FootnoteHeading": "",
918
+ "SeriesDesc": "65 years or olderOverall"
919
+ },
920
+ {
921
+ "YearStart": 2021,
922
+ "Data_Value": 47.1,
923
+ "Low_Confidence_Limit": 45.5,
924
+ "High_Confidence_Limit": 48.7,
925
+ "StratficationCategory1": "Age Group",
926
+ "Stratification1": "Overall",
927
+ "StratificationCategory2": "Overall",
928
+ "Stratification2": "Overall",
929
+ "FootnoteText": "",
930
+ "URL": "",
931
+ "FootnoteHeading": "",
932
+ "SeriesDesc": "OverallOverall"
933
+ },
934
+ {
935
+ "YearStart": 2022,
936
+ "Data_Value": 39.1,
937
+ "Low_Confidence_Limit": 36.8,
938
+ "High_Confidence_Limit": 41.3,
939
+ "StratficationCategory1": "Age Group",
940
+ "Stratification1": "50-64 years",
941
+ "StratificationCategory2": "Overall",
942
+ "Stratification2": "Overall",
943
+ "FootnoteText": "",
944
+ "URL": "",
945
+ "FootnoteHeading": "",
946
+ "SeriesDesc": "50-64 yearsOverall"
947
+ },
948
+ {
949
+ "YearStart": 2022,
950
+ "Data_Value": 56.5,
951
+ "Low_Confidence_Limit": 54.6,
952
+ "High_Confidence_Limit": 58.4,
953
+ "StratficationCategory1": "Age Group",
954
+ "Stratification1": "65 years or older",
955
+ "StratificationCategory2": "Overall",
956
+ "Stratification2": "Overall",
957
+ "FootnoteText": "",
958
+ "URL": "",
959
+ "FootnoteHeading": "",
960
+ "SeriesDesc": "65 years or olderOverall"
961
+ },
962
+ {
963
+ "YearStart": 2022,
964
+ "Data_Value": 47.7,
965
+ "Low_Confidence_Limit": 46.2,
966
+ "High_Confidence_Limit": 49.2,
967
+ "StratficationCategory1": "Age Group",
968
+ "Stratification1": "Overall",
969
+ "StratificationCategory2": "Overall",
970
+ "Stratification2": "Overall",
971
+ "FootnoteText": "",
972
+ "URL": "",
973
+ "FootnoteHeading": "",
974
+ "SeriesDesc": "OverallOverall"
975
+ }
976
+ ],
977
+ "version": "4.24.10",
978
+ "dynamicMarginTop": 0
979
+ }