@cdc/chart 4.25.8 → 4.25.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 (145) hide show
  1. package/.claude/settings.local.json +9 -0
  2. package/dist/{cdcchart-1a1724a1.es.js → cdcchart-dgT_1dIT.es.js} +136 -151
  3. package/dist/cdcchart.js +44236 -40355
  4. package/examples/feature/__data__/planet-example-data.json +0 -30
  5. package/examples/feature/boxplot/valid-boxplot.csv +38 -17
  6. package/examples/grouped-bar-test.json +400 -0
  7. package/examples/private/DEV-11825.json +573 -0
  8. package/examples/private/d.json +382 -0
  9. package/examples/private/example-2.json +49784 -0
  10. package/examples/private/f2.json +1 -0
  11. package/examples/private/f4.json +1577 -0
  12. package/examples/private/forecast.json +1180 -0
  13. package/examples/private/lollipop.json +468 -0
  14. package/examples/private/na.json +913 -0
  15. package/examples/private/new.json +48756 -0
  16. package/examples/private/pie-chart-legend.json +904 -0
  17. package/examples/private/test-data.csv +28 -0
  18. package/examples/suppressed_tooltip.json +480 -0
  19. package/index.html +2 -133
  20. package/package.json +25 -7
  21. package/src/CdcChart.tsx +9 -13
  22. package/src/CdcChartComponent.tsx +403 -92
  23. package/src/_stories/Chart.Anchors.stories.tsx +2 -2
  24. package/src/_stories/Chart.BoxPlot.stories.tsx +1 -1
  25. package/src/_stories/Chart.CI.stories.tsx +1 -1
  26. package/src/_stories/Chart.Combo.stories.tsx +18 -0
  27. package/src/_stories/Chart.CustomColors.stories.tsx +1 -1
  28. package/src/_stories/Chart.DynamicSeries.stories.tsx +2 -2
  29. package/src/_stories/Chart.Filters.stories.tsx +2 -2
  30. package/src/_stories/Chart.Forecast.stories.tsx +36 -0
  31. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +520 -0
  32. package/src/_stories/Chart.Legend.Gradient.stories.tsx +2 -2
  33. package/src/_stories/Chart.Patterns.stories.tsx +20 -0
  34. package/src/_stories/Chart.PreserveDecimals.stories.tsx +220 -0
  35. package/src/_stories/Chart.ScatterPlot.stories.tsx +1 -1
  36. package/src/_stories/Chart.SmallMultiples.stories.tsx +47 -0
  37. package/src/_stories/Chart.stories.tsx +8 -5
  38. package/src/_stories/Chart.tooltip.stories.tsx +1 -1
  39. package/src/_stories/ChartAnnotation.stories.tsx +7 -4
  40. package/src/_stories/ChartAxisLabels.stories.tsx +2 -2
  41. package/src/_stories/ChartAxisTitles.stories.tsx +2 -2
  42. package/src/_stories/ChartBar.Editor.stories.tsx +3580 -0
  43. package/src/_stories/ChartEditor.Editor.stories.tsx +658 -0
  44. package/src/_stories/ChartEditor.stories.tsx +59 -60
  45. package/src/_stories/ChartLine.Suppression.stories.tsx +1 -1
  46. package/src/_stories/ChartLine.Symbols.stories.tsx +1 -1
  47. package/src/_stories/ChartPrefixSuffix.stories.tsx +2 -2
  48. package/src/_stories/_mock/combo.json +451 -0
  49. package/src/_stories/_mock/editor-test-configs.json +376 -0
  50. package/src/_stories/_mock/editor-test-datasets.json +477 -0
  51. package/src/_stories/_mock/editor-tests/bar-chart-editor-test.json +255 -0
  52. package/src/_stories/_mock/editor-tests/bar-chart-general-test.json +267 -0
  53. package/src/_stories/_mock/editor-tests/bar-chart-test.json +237 -0
  54. package/src/_stories/_mock/forecast_combo_with_gaps.json +913 -0
  55. package/src/_stories/_mock/pie_config.json +257 -62
  56. package/src/_stories/_mock/small_multiples/small_multiples_bars.json +1944 -0
  57. package/src/_stories/_mock/small_multiples/small_multiples_big_data_bars.json +1114 -0
  58. package/src/_stories/_mock/small_multiples/small_multiples_lines.json +2646 -0
  59. package/src/_stories/_mock/small_multiples/small_multiples_lines_colors.json +1305 -0
  60. package/src/_stories/_mock/small_multiples/small_multiples_stacked_bars.json +1936 -0
  61. package/src/_stories/_mock/stacked-pattern-test.json +520 -0
  62. package/src/components/Annotations/components/AnnotationDraggable.tsx +1 -0
  63. package/src/components/Annotations/components/AnnotationDropdown.tsx +1 -1
  64. package/src/components/Annotations/components/findNearestDatum.ts +6 -41
  65. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +10 -6
  66. package/src/components/AreaChart/index.tsx +1 -2
  67. package/src/components/BarChart/components/BarChart.Horizontal.tsx +161 -22
  68. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +138 -5
  69. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +215 -73
  70. package/src/components/BarChart/components/BarChart.Vertical.tsx +155 -22
  71. package/src/components/BarChart/helpers/index.ts +43 -4
  72. package/src/components/BarChart/helpers/lollipopColors.ts +27 -0
  73. package/src/components/BarChart/helpers/useBarChart.ts +25 -3
  74. package/src/components/BoxPlot/BoxPlot.Vertical.tsx +2 -1
  75. package/src/components/BoxPlot/helpers/index.ts +3 -3
  76. package/src/components/Brush/BrushChart.tsx +1 -1
  77. package/src/components/DeviationBar.jsx +9 -6
  78. package/src/components/EditorPanel/EditorPanel.tsx +563 -229
  79. package/src/components/EditorPanel/EditorPanelContext.ts +3 -0
  80. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +96 -111
  81. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +19 -1
  82. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +461 -0
  83. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +80 -67
  84. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +422 -0
  85. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +188 -139
  86. package/src/components/EditorPanel/components/Panels/index.tsx +5 -1
  87. package/src/components/EditorPanel/components/Panels/panelVisual.styles.css +0 -8
  88. package/src/components/EditorPanel/editor-panel.scss +0 -20
  89. package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +49 -48
  90. package/src/components/EditorPanel/useEditorPermissions.ts +7 -15
  91. package/src/components/Forecasting/Forecasting.tsx +175 -27
  92. package/src/components/ForestPlot/ForestPlot.tsx +11 -7
  93. package/src/components/ForestPlot/ForestPlotProps.ts +1 -1
  94. package/src/components/Legend/Legend.Component.tsx +114 -14
  95. package/src/components/Legend/helpers/createFormatLabels.tsx +230 -171
  96. package/src/components/Legend/helpers/getLegendClasses.ts +0 -1
  97. package/src/components/LegendWrapper.tsx +1 -1
  98. package/src/components/LineChart/LineChartProps.ts +0 -3
  99. package/src/components/LineChart/components/LineChart.Circle.tsx +2 -2
  100. package/src/components/LineChart/helpers.ts +1 -1
  101. package/src/components/LineChart/index.tsx +38 -15
  102. package/src/components/LinearChart.tsx +96 -84
  103. package/src/components/PairedBarChart.jsx +6 -4
  104. package/src/components/PieChart/PieChart.tsx +170 -54
  105. package/src/components/Regions/components/Regions.tsx +3 -24
  106. package/src/components/Sankey/components/Sankey.tsx +7 -1
  107. package/src/components/Sankey/types/index.ts +1 -1
  108. package/src/components/ScatterPlot/ScatterPlot.jsx +32 -4
  109. package/src/components/SmallMultiples/SmallMultipleTile.tsx +198 -0
  110. package/src/components/SmallMultiples/SmallMultiples.css +32 -0
  111. package/src/components/SmallMultiples/SmallMultiples.tsx +271 -0
  112. package/src/components/SmallMultiples/index.ts +2 -0
  113. package/src/data/initial-state.js +327 -293
  114. package/src/helpers/buildForecastPaletteMappings.ts +112 -0
  115. package/src/helpers/buildForecastPaletteOptions.ts +71 -0
  116. package/src/helpers/getColorScale.ts +82 -8
  117. package/src/{hooks/useMinMax.ts → helpers/getMinMax.ts} +14 -7
  118. package/src/helpers/getNewRuntime.ts +1 -1
  119. package/src/helpers/getTransformedData.ts +1 -1
  120. package/src/helpers/getYAxisAutoPadding.ts +53 -0
  121. package/src/helpers/smallMultiplesHelpers.ts +529 -0
  122. package/src/hooks/useChartHoverAnalytics.tsx +44 -0
  123. package/src/hooks/useProgrammaticTooltip.ts +96 -0
  124. package/src/hooks/useReduceData.ts +105 -70
  125. package/src/hooks/useScales.ts +88 -34
  126. package/src/hooks/useSmallMultipleSynchronization.ts +59 -0
  127. package/src/hooks/useTooltip.tsx +116 -29
  128. package/src/index.jsx +0 -2
  129. package/src/scss/main.scss +13 -80
  130. package/src/store/chart.actions.ts +2 -0
  131. package/src/store/chart.reducer.ts +5 -1
  132. package/src/test/CdcChart.test.jsx +8 -3
  133. package/src/types/ChartConfig.ts +53 -11
  134. package/src/types/ChartContext.ts +4 -0
  135. package/vite.config.js +1 -1
  136. package/vitest.config.ts +16 -0
  137. package/src/_stories/_mock/pie_data.json +0 -218
  138. package/src/components/AreaChart/components/AreaChart.jsx +0 -109
  139. package/src/coreStyles_chart.scss +0 -3
  140. package/src/helpers/configHelpers.ts +0 -28
  141. package/src/helpers/generateColorsArray.ts +0 -8
  142. package/src/helpers/sort.ts +0 -7
  143. package/src/hooks/useActiveElement.js +0 -19
  144. package/src/hooks/useChartClasses.js +0 -41
  145. package/src/hooks/useColorPalette.js +0 -76
@@ -0,0 +1,573 @@
1
+ {
2
+ "annotations": [],
3
+ "allowLineToBarGraph": "__​undefined__",
4
+ "type": "chart",
5
+ "debugSvg": false,
6
+ "chartMessage": {
7
+ "noData": "No Data Available"
8
+ },
9
+ "title": "<em>4.25.11</em> Bar Chart",
10
+ "showTitle": true,
11
+ "showDownloadMediaButton": false,
12
+ "theme": "theme-blue",
13
+ "animate": false,
14
+ "lineDatapointStyle": "hover",
15
+ "lineDatapointColor": "Same as Line",
16
+ "barHasBorder": "true",
17
+ "isLollipopChart": false,
18
+ "lollipopShape": "circle",
19
+ "lollipopColorStyle": "two-tone",
20
+ "visualizationSubType": "regular",
21
+ "barStyle": "",
22
+ "roundingStyle": "standard",
23
+ "tipRounding": "top",
24
+ "isResponsiveTicks": false,
25
+ "general": {
26
+ "annotationDropdownText": "Annotations",
27
+ "showMissingDataLabel": true,
28
+ "showSuppressedSymbol": true,
29
+ "showZeroValueData": true,
30
+ "hideNullValue": true,
31
+ "palette": {
32
+ "isReversed": true,
33
+ "version": "2.0",
34
+ "name": "sequential_bluereverse"
35
+ }
36
+ },
37
+ "padding": {
38
+ "left": 5,
39
+ "right": 5
40
+ },
41
+ "preliminaryData": [],
42
+ "yAxis": {
43
+ "hideAxis": false,
44
+ "displayNumbersOnBar": false,
45
+ "hideLabel": false,
46
+ "hideTicks": false,
47
+ "size": 50,
48
+ "gridLines": false,
49
+ "enablePadding": false,
50
+ "min": "",
51
+ "max": "",
52
+ "labelColor": "#1c1d1f",
53
+ "tickLabelColor": "#1c1d1f",
54
+ "tickColor": "#1c1d1f",
55
+ "rightHideAxis": false,
56
+ "rightAxisSize": 0,
57
+ "rightLabel": "",
58
+ "rightLabelOffsetSize": 0,
59
+ "rightAxisLabelColor": "#1c1d1f",
60
+ "rightAxisTickLabelColor": "#1c1d1f",
61
+ "rightAxisTickColor": "#1c1d1f",
62
+ "numTicks": "",
63
+ "axisPadding": 0,
64
+ "scalePadding": 10,
65
+ "tickRotation": 0,
66
+ "anchors": [],
67
+ "shoMissingDataLabel": true,
68
+ "showMissingDataLine": true,
69
+ "categories": [],
70
+ "type": "__​undefined__",
71
+ "labelPlacement": "Below Bar",
72
+ "label": "Total Cases"
73
+ },
74
+ "boxplot": {
75
+ "plots": [],
76
+ "borders": "true",
77
+ "plotOutlierValues": false,
78
+ "plotNonOutlierValues": true,
79
+ "labels": {
80
+ "q1": "Lower Quartile",
81
+ "q2": "q2",
82
+ "q3": "Upper Quartile",
83
+ "q4": "q4",
84
+ "minimum": "Minimum",
85
+ "maximum": "Maximum",
86
+ "mean": "Mean",
87
+ "median": "Median",
88
+ "sd": "Standard Deviation",
89
+ "iqr": "Interquartile Range",
90
+ "count": "Count",
91
+ "outliers": "Outliers",
92
+ "values": "Values",
93
+ "lowerBounds": "Lower Bounds",
94
+ "upperBounds": "Upper Bounds"
95
+ }
96
+ },
97
+ "topAxis": {
98
+ "hasLine": false
99
+ },
100
+ "isLegendValue": false,
101
+ "barThickness": "0.37",
102
+ "barHeight": 25,
103
+ "barSpace": 15,
104
+ "heights": {
105
+ "vertical": 300,
106
+ "horizontal": 423.2
107
+ },
108
+ "xAxis": {
109
+ "sortDates": false,
110
+ "anchors": [],
111
+ "type": "categorical",
112
+ "showTargetLabel": true,
113
+ "targetLabel": "Target",
114
+ "hideAxis": false,
115
+ "hideLabel": false,
116
+ "hideTicks": false,
117
+ "size": 75,
118
+ "tickRotation": 0,
119
+ "min": "",
120
+ "max": "",
121
+ "labelColor": "#1c1d1f",
122
+ "tickLabelColor": "#1c1d1f",
123
+ "tickColor": "#1c1d1f",
124
+ "numTicks": "",
125
+ "labelOffset": 0,
126
+ "axisPadding": 200,
127
+ "target": 0,
128
+ "maxTickRotation": 45,
129
+ "padding": 5,
130
+ "showYearsOnce": false,
131
+ "sortByRecentDate": false,
132
+ "brushActive": false,
133
+ "dataKey": "Sex",
134
+ "axisBBox": 29.860000610351562,
135
+ "tickWidthMax": 39
136
+ },
137
+ "table": {
138
+ "label": "Data Table",
139
+ "expanded": true,
140
+ "limitHeight": false,
141
+ "height": "",
142
+ "caption": "",
143
+ "showDownloadUrl": false,
144
+ "showDataTableLink": true,
145
+ "showDownloadLinkBelow": true,
146
+ "indexLabel": "",
147
+ "download": true,
148
+ "showVertical": true,
149
+ "dateDisplayFormat": "",
150
+ "showMissingDataLabel": true,
151
+ "showSuppressedSymbol": true,
152
+ "collapsible": true,
153
+ "show": true
154
+ },
155
+ "orientation": "horizontal",
156
+ "columns": {},
157
+ "legend": {
158
+ "hide": false,
159
+ "behavior": "isolate",
160
+ "axisAlign": true,
161
+ "singleRow": true,
162
+ "colorCode": "",
163
+ "reverseLabelOrder": false,
164
+ "description": "",
165
+ "dynamicLegend": false,
166
+ "dynamicLegendDefaultText": "Show All",
167
+ "dynamicLegendItemLimit": 5,
168
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
169
+ "dynamicLegendChartMessage": "Select Options from the Legend",
170
+ "label": "",
171
+ "lineMode": false,
172
+ "verticalSorted": false,
173
+ "highlightOnHover": false,
174
+ "hideSuppressedLabels": false,
175
+ "hideSuppressionLink": false,
176
+ "seriesHighlight": [],
177
+ "style": "circles",
178
+ "subStyle": "linear blocks",
179
+ "groupBy": "",
180
+ "shape": "circle",
181
+ "tickRotation": "",
182
+ "order": "dataColumn",
183
+ "hideBorder": {
184
+ "side": false,
185
+ "topBottom": true
186
+ },
187
+ "position": "right",
188
+ "orderedValues": [],
189
+ "patterns": {},
190
+ "patternField": "",
191
+ "unified": true
192
+ },
193
+ "smallMultiples": {
194
+ "mode": "",
195
+ "tileColumn": "",
196
+ "tilesPerRowDesktop": 3,
197
+ "tilesPerRowMobile": 1,
198
+ "tileOrder": [],
199
+ "tileOrderType": "asc",
200
+ "tileTitles": {},
201
+ "independentYAxis": false,
202
+ "colorMode": "same",
203
+ "synchronizedTooltips": true,
204
+ "showAreaUnderLine": true
205
+ },
206
+ "exclusions": {
207
+ "active": false,
208
+ "keys": []
209
+ },
210
+ "twoColor": {
211
+ "palette": "monochrome-1",
212
+ "isPaletteReversed": false
213
+ },
214
+ "labels": false,
215
+ "dataFormat": {
216
+ "commas": true,
217
+ "prefix": "",
218
+ "suffix": "",
219
+ "abbreviated": true,
220
+ "bottomSuffix": "",
221
+ "bottomPrefix": "",
222
+ "bottomAbbreviated": false
223
+ },
224
+ "filters": [
225
+ {
226
+ "values": [
227
+ "2019",
228
+ "2020",
229
+ "2021"
230
+ ],
231
+ "filterStyle": "dropdown",
232
+ "id": 1763642814383,
233
+ "showDropdown": true,
234
+ "active": "2019",
235
+ "columnName": "Year",
236
+ "orderedValues": [
237
+ "2019",
238
+ "2020",
239
+ "2021"
240
+ ]
241
+ }
242
+ ],
243
+ "confidenceKeys": {},
244
+ "visual": {
245
+ "border": true,
246
+ "accent": true,
247
+ "background": true,
248
+ "verticalHoverLine": false,
249
+ "horizontalHoverLine": false,
250
+ "lineDatapointSymbol": "none",
251
+ "maximumShapeAmount": 7
252
+ },
253
+ "useLogScale": false,
254
+ "filterBehavior": "Filter Change",
255
+ "highlightedBarValues": [],
256
+ "series": [
257
+ {
258
+ "dataKey": "<15",
259
+ "type": "Bar",
260
+ "axis": "Left",
261
+ "tooltip": true
262
+ },
263
+ {
264
+ "dataKey": "15-24",
265
+ "type": "Bar",
266
+ "axis": "Left",
267
+ "tooltip": true
268
+ },
269
+ {
270
+ "dataKey": "25-34",
271
+ "type": "Bar",
272
+ "axis": "Left",
273
+ "tooltip": true
274
+ },
275
+ {
276
+ "dataKey": "35-44",
277
+ "type": "Bar",
278
+ "axis": "Left",
279
+ "tooltip": true
280
+ },
281
+ {
282
+ "dataKey": "45-54",
283
+ "type": "Bar",
284
+ "axis": "Left",
285
+ "tooltip": true
286
+ },
287
+ {
288
+ "dataKey": "55-64",
289
+ "type": "Bar",
290
+ "axis": "Left",
291
+ "tooltip": true
292
+ },
293
+ {
294
+ "dataKey": "65+",
295
+ "type": "Bar",
296
+ "axis": "Left",
297
+ "tooltip": true
298
+ }
299
+ ],
300
+ "tooltips": {
301
+ "opacity": 90,
302
+ "singleSeries": false,
303
+ "dateDisplayFormat": ""
304
+ },
305
+ "forestPlot": {
306
+ "startAt": 0,
307
+ "colors": {
308
+ "line": "",
309
+ "shape": ""
310
+ },
311
+ "lineOfNoEffect": {
312
+ "show": true
313
+ },
314
+ "type": "",
315
+ "pooledResult": {
316
+ "diamondHeight": 5,
317
+ "column": ""
318
+ },
319
+ "estimateField": "",
320
+ "estimateRadius": "",
321
+ "shape": "square",
322
+ "rowHeight": 20,
323
+ "description": {
324
+ "show": true,
325
+ "text": "description",
326
+ "location": 0
327
+ },
328
+ "result": {
329
+ "show": true,
330
+ "text": "result",
331
+ "location": 100
332
+ },
333
+ "radius": {
334
+ "min": 2,
335
+ "max": 10,
336
+ "scalingColumn": ""
337
+ },
338
+ "regression": {
339
+ "lower": 0,
340
+ "upper": 0,
341
+ "estimateField": 0
342
+ },
343
+ "leftWidthOffset": 0,
344
+ "rightWidthOffset": 0,
345
+ "showZeroLine": false,
346
+ "leftLabel": "",
347
+ "rightLabel": ""
348
+ },
349
+ "area": {
350
+ "isStacked": false
351
+ },
352
+ "sankey": {
353
+ "title": {
354
+ "defaultColor": "black"
355
+ },
356
+ "iterations": 1,
357
+ "rxValue": 0.9,
358
+ "overallSize": {
359
+ "width": 900,
360
+ "height": 700
361
+ },
362
+ "margin": {
363
+ "margin_y": 25,
364
+ "margin_x": 0
365
+ },
366
+ "nodeSize": {
367
+ "nodeWidth": 26,
368
+ "nodeHeight": 40
369
+ },
370
+ "nodePadding": 55,
371
+ "nodeFontColor": "black",
372
+ "nodeColor": {
373
+ "default": "#ff8500",
374
+ "inactive": "#808080"
375
+ },
376
+ "linkColor": {
377
+ "default": "#ffc900",
378
+ "inactive": "#D3D3D3"
379
+ },
380
+ "opacity": {
381
+ "nodeOpacityDefault": 1,
382
+ "nodeOpacityInactive": 0.1,
383
+ "LinkOpacityDefault": 1,
384
+ "LinkOpacityInactive": 0.1
385
+ },
386
+ "storyNodeFontColor": "#006778",
387
+ "storyNodeText": [],
388
+ "nodeValueStyle": {
389
+ "textBefore": "(",
390
+ "textAfter": ")"
391
+ },
392
+ "data": []
393
+ },
394
+ "markupVariables": [],
395
+ "enableMarkupVariables": false,
396
+ "errors": [],
397
+ "currentViewport": "lg",
398
+ "id": 1,
399
+ "category": "Charts",
400
+ "label": "Bar",
401
+ "subType": "Bar",
402
+ "icon": {
403
+ "key": null,
404
+ "ref": null,
405
+ "props": {},
406
+ "_owner": null
407
+ },
408
+ "content": "Use bars to show comparisons between data categories.",
409
+ "visualizationType": "Bar",
410
+ "activeVizButtonID": 1,
411
+ "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/46-yr2021-2023-chart-sex-age-3-metrics.csv",
412
+ "dataFileSourceType": "url",
413
+ "dataDescription": {
414
+ "horizontal": false,
415
+ "series": true,
416
+ "singleRow": false,
417
+ "seriesKey": "Age Group",
418
+ "xKey": "Sex",
419
+ "valueKeysTallSupport": [
420
+ "Total Cases"
421
+ ],
422
+ "ignoredKeys": [
423
+ "Cases per 100K",
424
+ "Avg Days Treatment"
425
+ ]
426
+ },
427
+ "version": "4.25.11",
428
+ "migrations": {
429
+ "addColorMigration": true
430
+ },
431
+ "superTitle": "<sup>Super/sup> Title",
432
+ "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>",
433
+ "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>",
434
+ "legacyFootnotes": "Foot: 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>",
435
+ "dynamicMarginTop": 0,
436
+ "data": [
437
+ {
438
+ "Sex": "Male",
439
+ "Year": "2019",
440
+ "<15": "519960",
441
+ "15-24": "362320",
442
+ "25-34": "511784",
443
+ "35-44": "752920",
444
+ "45-54": "578130",
445
+ "55-64": "86450",
446
+ "65+": "51100"
447
+ },
448
+ {
449
+ "Sex": "Female",
450
+ "Year": "2019",
451
+ "<15": "399980",
452
+ "15-24": "251160",
453
+ "25-34": "238700",
454
+ "35-44": "680498",
455
+ "45-54": "394310",
456
+ "55-64": "56700",
457
+ "65+": "28140"
458
+ },
459
+ {
460
+ "Sex": "Male",
461
+ "Year": "2020",
462
+ "<15": "649950",
463
+ "15-24": "452900",
464
+ "25-34": "639730",
465
+ "35-44": "941150",
466
+ "45-54": "722662",
467
+ "55-64": "108062",
468
+ "65+": "63875"
469
+ },
470
+ {
471
+ "Sex": "Female",
472
+ "Year": "2020",
473
+ "<15": "499975",
474
+ "15-24": "313950",
475
+ "25-34": "298375",
476
+ "35-44": "654325",
477
+ "45-54": "492887",
478
+ "55-64": "92137",
479
+ "65+": "35175"
480
+ },
481
+ {
482
+ "Sex": "Male",
483
+ "Year": "2021",
484
+ "<15": "478363",
485
+ "15-24": "333334",
486
+ "25-34": "362185",
487
+ "35-44": "692686",
488
+ "45-54": "691442",
489
+ "55-64": "79534",
490
+ "65+": "47012"
491
+ },
492
+ {
493
+ "Sex": "Female",
494
+ "Year": "2021",
495
+ "<15": "367981",
496
+ "15-24": "231067",
497
+ "25-34": "219604",
498
+ "35-44": "481583",
499
+ "45-54": "362765",
500
+ "55-64": "52164",
501
+ "65+": "25888"
502
+ }
503
+ ],
504
+ "formattedData": [
505
+ {
506
+ "Sex": "Male",
507
+ "Year": "2019",
508
+ "<15": "519960",
509
+ "15-24": "362320",
510
+ "25-34": "511784",
511
+ "35-44": "752920",
512
+ "45-54": "578130",
513
+ "55-64": "86450",
514
+ "65+": "51100"
515
+ },
516
+ {
517
+ "Sex": "Female",
518
+ "Year": "2019",
519
+ "<15": "399980",
520
+ "15-24": "251160",
521
+ "25-34": "238700",
522
+ "35-44": "680498",
523
+ "45-54": "394310",
524
+ "55-64": "56700",
525
+ "65+": "28140"
526
+ },
527
+ {
528
+ "Sex": "Male",
529
+ "Year": "2020",
530
+ "<15": "649950",
531
+ "15-24": "452900",
532
+ "25-34": "639730",
533
+ "35-44": "941150",
534
+ "45-54": "722662",
535
+ "55-64": "108062",
536
+ "65+": "63875"
537
+ },
538
+ {
539
+ "Sex": "Female",
540
+ "Year": "2020",
541
+ "<15": "499975",
542
+ "15-24": "313950",
543
+ "25-34": "298375",
544
+ "35-44": "654325",
545
+ "45-54": "492887",
546
+ "55-64": "92137",
547
+ "65+": "35175"
548
+ },
549
+ {
550
+ "Sex": "Male",
551
+ "Year": "2021",
552
+ "<15": "478363",
553
+ "15-24": "333334",
554
+ "25-34": "362185",
555
+ "35-44": "692686",
556
+ "45-54": "691442",
557
+ "55-64": "79534",
558
+ "65+": "47012"
559
+ },
560
+ {
561
+ "Sex": "Female",
562
+ "Year": "2021",
563
+ "<15": "367981",
564
+ "15-24": "231067",
565
+ "25-34": "219604",
566
+ "35-44": "481583",
567
+ "45-54": "362765",
568
+ "55-64": "52164",
569
+ "65+": "25888"
570
+ }
571
+ ],
572
+ "datasets": {}
573
+ }