@cdc/chart 4.25.11 → 4.26.2

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 (181) hide show
  1. package/CLAUDE.local.md +79 -0
  2. package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
  3. package/dist/cdcchart.js +51401 -50814
  4. package/examples/default.json +378 -0
  5. package/examples/feature/__data__/horizon-chart-data.json +373 -0
  6. package/examples/feature/annotations/index.json +3 -6
  7. package/examples/feature/horizon/horizon-chart.json +395 -0
  8. package/examples/feature/pie/planet-pie-example-config.json +48 -2
  9. package/examples/line-chart-states.json +1085 -0
  10. package/examples/private/123.json +694 -0
  11. package/examples/private/DEV-12100.json +1303 -0
  12. package/examples/private/anchor-issue.json +4094 -0
  13. package/examples/private/backwards-slider.json +10430 -0
  14. package/examples/private/cat-y.json +1235 -0
  15. package/examples/private/data-points.json +228 -0
  16. package/examples/private/georgia.csv +160 -0
  17. package/examples/private/height.json +3915 -0
  18. package/examples/private/links.json +569 -0
  19. package/examples/private/quadrant.txt +30 -0
  20. package/examples/private/test-forecast.json +5510 -0
  21. package/examples/private/timeline-data.json +1 -0
  22. package/examples/private/timeline.json +389 -0
  23. package/examples/private/warming-stripe-test.json +2578 -0
  24. package/examples/private/warming-stripes.json +4763 -0
  25. package/examples/radar-chart-simple.json +133 -0
  26. package/examples/radar-chart.json +148 -0
  27. package/examples/tech-adoption-with-links.json +560 -0
  28. package/index.html +1 -36
  29. package/package.json +59 -60
  30. package/src/CdcChartComponent.tsx +206 -89
  31. package/src/_stories/Chart.Anchors.stories.tsx +10 -0
  32. package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
  33. package/src/_stories/Chart.CI.stories.tsx +13 -0
  34. package/src/_stories/Chart.Combo.stories.tsx +17 -0
  35. package/src/_stories/Chart.CustomColors.stories.tsx +4 -0
  36. package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
  37. package/src/_stories/Chart.Filters.stories.tsx +4 -0
  38. package/src/_stories/Chart.Forecast.stories.tsx +4 -0
  39. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
  40. package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
  41. package/src/_stories/Chart.Patterns.stories.tsx +4 -0
  42. package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
  43. package/src/_stories/Chart.Regions.Categorical.stories.tsx +161 -0
  44. package/src/_stories/Chart.Regions.DateScale.stories.tsx +216 -0
  45. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +312 -0
  46. package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
  47. package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
  48. package/src/_stories/Chart.stories.tsx +45 -0
  49. package/src/_stories/Chart.tooltip.stories.tsx +7 -0
  50. package/src/_stories/ChartAnnotation.stories.tsx +10 -0
  51. package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
  52. package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
  53. package/src/_stories/ChartBar.Editor.stories.tsx +11 -6
  54. package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
  55. package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
  56. package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
  57. package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
  58. package/src/_stories/ChartBrush.stories.tsx +57 -0
  59. package/src/_stories/ChartEditor.Editor.stories.tsx +3 -5
  60. package/src/_stories/ChartEditor.stories.tsx +7 -0
  61. package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
  62. package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
  63. package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
  64. package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
  65. package/src/_stories/TechAdoptionWithLinks.stories.tsx +34 -0
  66. package/src/_stories/_mock/brush_continuous.json +86 -0
  67. package/src/_stories/_mock/brush_date_large.json +176 -0
  68. package/src/_stories/_mock/brush_enabled.json +326 -0
  69. package/src/_stories/_mock/brush_mock.json +2 -69
  70. package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
  71. package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
  72. package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
  73. package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
  74. package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
  75. package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
  76. package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
  77. package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
  78. package/src/components/Annotations/components/AnnotationDraggable.styles.css +11 -17
  79. package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
  80. package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
  81. package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
  82. package/src/components/Annotations/components/AnnotationList.styles.css +4 -10
  83. package/src/components/Annotations/components/AnnotationList.tsx +5 -4
  84. package/src/components/Annotations/components/findNearestDatum.ts +75 -85
  85. package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
  86. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +1 -2
  87. package/src/components/Axis/BottomAxis.tsx +270 -0
  88. package/src/components/Axis/Categorical.Axis.tsx +6 -7
  89. package/src/components/Axis/LeftAxis.tsx +404 -0
  90. package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
  91. package/src/components/Axis/PairedBarAxis.tsx +186 -0
  92. package/src/components/Axis/README.md +94 -0
  93. package/src/components/Axis/RightAxis.tsx +108 -0
  94. package/src/components/Axis/axis.constants.ts +21 -0
  95. package/src/components/Axis/index.ts +7 -0
  96. package/src/components/BarChart/components/BarChart.Horizontal.tsx +178 -24
  97. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
  98. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
  99. package/src/components/BarChart/components/BarChart.Vertical.tsx +6 -8
  100. package/src/components/BarChart/components/BarChart.tsx +7 -1
  101. package/src/components/BarChart/components/context.tsx +1 -0
  102. package/src/components/BarChart/helpers/useBarChart.ts +14 -2
  103. package/src/components/Brush/BrushSelector.tsx +1390 -0
  104. package/src/components/Brush/MiniChartPreview.tsx +400 -0
  105. package/src/components/DeviationBar.jsx +9 -7
  106. package/src/components/EditorPanel/EditorPanel.tsx +2734 -2595
  107. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +60 -22
  108. package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
  109. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +137 -30
  110. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +2 -0
  111. package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
  112. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +0 -1
  113. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +30 -25
  114. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +42 -28
  115. package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
  116. package/src/components/EditorPanel/useEditorPermissions.ts +81 -39
  117. package/src/components/HorizonChart/HorizonChart.tsx +131 -0
  118. package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
  119. package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
  120. package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
  121. package/src/components/HorizonChart/index.tsx +3 -0
  122. package/src/components/Legend/Legend.Component.tsx +52 -4
  123. package/src/components/Legend/Legend.tsx +4 -3
  124. package/src/components/Legend/LegendValueRange.tsx +77 -0
  125. package/src/components/Legend/helpers/createFormatLabels.tsx +164 -2
  126. package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
  127. package/src/components/Legend/helpers/index.ts +10 -6
  128. package/src/components/LineChart/helpers/README.md +292 -0
  129. package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
  130. package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
  131. package/src/components/LineChart/index.tsx +44 -8
  132. package/src/components/LinearChart/README.md +109 -0
  133. package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
  134. package/src/components/LinearChart/linearChart.constants.ts +84 -0
  135. package/src/components/LinearChart/tests/LinearChart.test.tsx +201 -0
  136. package/src/components/LinearChart/tests/mockConfigContext.ts +129 -0
  137. package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
  138. package/src/components/LinearChart.tsx +338 -1082
  139. package/src/components/PairedBarChart.jsx +20 -3
  140. package/src/components/PieChart/PieChart.tsx +1 -1
  141. package/src/components/RadarChart/RadarAxis.tsx +78 -0
  142. package/src/components/RadarChart/RadarChart.tsx +298 -0
  143. package/src/components/RadarChart/RadarGrid.tsx +64 -0
  144. package/src/components/RadarChart/RadarPolygon.tsx +91 -0
  145. package/src/components/RadarChart/helpers.ts +83 -0
  146. package/src/components/RadarChart/index.tsx +3 -0
  147. package/src/components/Regions/components/Regions.tsx +365 -122
  148. package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
  149. package/src/components/SmallMultiples/SmallMultipleTile.tsx +5 -1
  150. package/src/components/WarmingStripes/WarmingStripes.tsx +230 -0
  151. package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
  152. package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
  153. package/src/components/WarmingStripes/index.tsx +3 -0
  154. package/src/data/initial-state.js +17 -2
  155. package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
  156. package/src/helpers/getExcludedData.ts +4 -0
  157. package/src/helpers/getMinMax.ts +12 -7
  158. package/src/helpers/handleChartAriaLabels.ts +19 -19
  159. package/src/helpers/handleLineType.ts +22 -18
  160. package/src/helpers/sizeHelpers.ts +0 -20
  161. package/src/helpers/smallMultiplesHelpers.ts +1 -1
  162. package/src/hooks/useChartHoverAnalytics.tsx +10 -9
  163. package/src/hooks/useProgrammaticTooltip.ts +23 -2
  164. package/src/hooks/useScales.ts +18 -1
  165. package/src/hooks/useTooltip.tsx +34 -10
  166. package/src/scss/DataTable.scss +0 -4
  167. package/src/scss/main.scss +22 -3
  168. package/src/selectors/README.md +68 -0
  169. package/src/store/chart.reducer.ts +2 -0
  170. package/src/test/CdcChart.test.jsx +1 -1
  171. package/src/types/ChartConfig.ts +21 -0
  172. package/src/types/ChartContext.ts +1 -0
  173. package/src/types/Horizon.ts +64 -0
  174. package/src/types/Label.ts +1 -0
  175. package/src/utils/analyticsTracking.ts +19 -0
  176. package/LICENSE +0 -201
  177. package/src/components/Annotations/components/helpers/index.tsx +0 -46
  178. package/src/components/Brush/BrushChart.tsx +0 -128
  179. package/src/components/Brush/BrushController.tsx +0 -71
  180. package/src/components/Brush/types.tsx +0 -8
  181. package/src/components/BrushChart.tsx +0 -223
@@ -0,0 +1,378 @@
1
+ {
2
+ "type": "chart",
3
+ "debugSvg": false,
4
+ "chartMessage": {
5
+ "noData": "No Data Available"
6
+ },
7
+ "title": "Combo Title <em>Chart</em>",
8
+ "showTitle": true,
9
+ "showDownloadMediaButton": false,
10
+ "theme": "theme-blue",
11
+ "animate": false,
12
+ "fontSize": "medium",
13
+ "lineDatapointStyle": "hover",
14
+ "lineDatapointColor": "Same as Line",
15
+ "barHasBorder": "false",
16
+ "isLollipopChart": false,
17
+ "lollipopShape": "circle",
18
+ "lollipopColorStyle": "two-tone",
19
+ "visualizationSubType": "regular",
20
+ "barStyle": "",
21
+ "roundingStyle": "standard",
22
+ "tipRounding": "top",
23
+ "isResponsiveTicks": false,
24
+ "general": {
25
+ "showDownloadButton": false
26
+ },
27
+ "padding": {
28
+ "left": 5,
29
+ "right": 5
30
+ },
31
+ "suppressedData": [],
32
+ "preliminaryData": [],
33
+ "yAxis": {
34
+ "hideAxis": false,
35
+ "displayNumbersOnBar": false,
36
+ "hideLabel": false,
37
+ "hideTicks": false,
38
+ "size": "70",
39
+ "gridLines": false,
40
+ "enablePadding": false,
41
+ "min": "",
42
+ "max": "",
43
+ "labelColor": "#333",
44
+ "tickLabelColor": "#333",
45
+ "tickColor": "#333",
46
+ "rightHideAxis": false,
47
+ "rightAxisSize": "100",
48
+ "rightLabel": "New Participants",
49
+ "rightLabelOffsetSize": "60",
50
+ "rightAxisLabelColor": "#333",
51
+ "rightAxisTickLabelColor": "#333",
52
+ "rightAxisTickColor": "#333",
53
+ "numTicks": "",
54
+ "axisPadding": 0,
55
+ "scalePadding": 10,
56
+ "tickRotation": 0,
57
+ "anchors": [],
58
+ "label": "Outreach Costs"
59
+ },
60
+ "boxplot": {
61
+ "plots": [],
62
+ "borders": "true",
63
+ "firstQuartilePercentage": 25,
64
+ "thirdQuartilePercentage": 75,
65
+ "boxWidthPercentage": 40,
66
+ "plotOutlierValues": false,
67
+ "plotNonOutlierValues": true,
68
+ "legend": {
69
+ "showHowToReadText": false,
70
+ "howToReadText": ""
71
+ },
72
+ "labels": {
73
+ "q1": "Lower Quartile",
74
+ "q2": "q2",
75
+ "q3": "Upper Quartile",
76
+ "q4": "q4",
77
+ "minimum": "Minimum",
78
+ "maximum": "Maximum",
79
+ "mean": "Mean",
80
+ "median": "Median",
81
+ "sd": "Standard Deviation",
82
+ "iqr": "Interquartile Range",
83
+ "total": "Total",
84
+ "outliers": "Outliers",
85
+ "values": "Values",
86
+ "lowerBounds": "Lower Bounds",
87
+ "upperBounds": "Upper Bounds"
88
+ }
89
+ },
90
+ "topAxis": {
91
+ "hasLine": false
92
+ },
93
+ "isLegendValue": false,
94
+ "barThickness": 0.35,
95
+ "barHeight": 25,
96
+ "barSpace": 15,
97
+ "heights": {
98
+ "vertical": 300,
99
+ "horizontal": 750
100
+ },
101
+ "xAxis": {
102
+ "sortDates": false,
103
+ "anchors": [],
104
+ "type": "date",
105
+ "showTargetLabel": true,
106
+ "targetLabel": "Target",
107
+ "hideAxis": false,
108
+ "hideLabel": false,
109
+ "hideTicks": false,
110
+ "size": "75",
111
+ "tickRotation": "50",
112
+ "min": "",
113
+ "max": "",
114
+ "labelColor": "#333",
115
+ "tickLabelColor": "#333",
116
+ "tickColor": "#333",
117
+ "numTicks": "6",
118
+ "labelOffset": 65,
119
+ "axisPadding": 0,
120
+ "target": 0,
121
+ "maxTickRotation": 0,
122
+ "dataKey": "Date",
123
+ "dateParseFormat": "%m/%d/%Y",
124
+ "dateDisplayFormat": "%m/%Y",
125
+ "tickWidthMax": 91,
126
+ "padding": 6,
127
+ "label": "Date"
128
+ },
129
+ "table": {
130
+ "label": "Data Table",
131
+ "expanded": true,
132
+ "limitHeight": false,
133
+ "height": "",
134
+ "caption": "",
135
+ "showDownloadUrl": false,
136
+ "showDataTableLink": true,
137
+ "indexLabel": "Date",
138
+ "download": false,
139
+ "showVertical": true,
140
+ "dateDisplayFormat": "%m/%d/%Y",
141
+ "show": true
142
+ },
143
+ "orientation": "vertical",
144
+ "color": "pinkpurple",
145
+ "columns": {},
146
+ "legend": {
147
+ "hide": false,
148
+ "behavior": "highlight",
149
+ "singleRow": true,
150
+ "colorCode": "",
151
+ "reverseLabelOrder": false,
152
+ "description": "Legend Description: 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>",
153
+ "dynamicLegend": false,
154
+ "dynamicLegendDefaultText": "Show All",
155
+ "dynamicLegendItemLimit": 5,
156
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
157
+ "dynamicLegendChartMessage": "Select Options from the Legend",
158
+ "lineMode": false,
159
+ "verticalSorted": false,
160
+ "highlightOnHover": false,
161
+ "label": "Legend Title: Lorem <em>ipsum dolor</em> sit amet"
162
+ },
163
+ "brush": {
164
+ "height": 25,
165
+ "data": [
166
+ {
167
+ "Date": "5/15/2022",
168
+ "New Participants": "70",
169
+ "Outreach Costs": "160000"
170
+ },
171
+ {
172
+ "Date": "8/15/2022",
173
+ "New Participants": "75",
174
+ "Outreach Costs": "170000"
175
+ },
176
+ {
177
+ "Date": "3/15/2022",
178
+ "New Participants": "80",
179
+ "Outreach Costs": "238000"
180
+ },
181
+ {
182
+ "Date": "1/15/2022",
183
+ "New Participants": "90",
184
+ "Outreach Costs": "252000"
185
+ },
186
+ {
187
+ "Date": "6/15/2022",
188
+ "New Participants": "100",
189
+ "Outreach Costs": "280000"
190
+ },
191
+ {
192
+ "Date": "9/15/2022",
193
+ "New Participants": "120",
194
+ "Outreach Costs": "368000"
195
+ },
196
+ {
197
+ "Date": "7/15/2022",
198
+ "New Participants": "132",
199
+ "Outreach Costs": "380000"
200
+ },
201
+ {
202
+ "Date": "4/15/2022",
203
+ "New Participants": "146",
204
+ "Outreach Costs": "480000"
205
+ },
206
+ {
207
+ "Date": "2/15/2022",
208
+ "New Participants": "150",
209
+ "Outreach Costs": "410000"
210
+ }
211
+ ],
212
+ "active": false
213
+ },
214
+ "exclusions": {
215
+ "active": false,
216
+ "keys": []
217
+ },
218
+ "palette": "qualitative3",
219
+ "isPaletteReversed": false,
220
+ "twoColor": {
221
+ "palette": "monochrome-1",
222
+ "isPaletteReversed": false
223
+ },
224
+ "labels": false,
225
+ "dataFormat": {
226
+ "commas": true,
227
+ "prefix": "",
228
+ "suffix": "",
229
+ "abbreviated": true,
230
+ "bottomSuffix": "",
231
+ "bottomPrefix": "",
232
+ "bottomAbbreviated": false
233
+ },
234
+ "confidenceKeys": {},
235
+ "visual": {
236
+ "border": true,
237
+ "accent": true,
238
+ "background": true,
239
+ "verticalHoverLine": false,
240
+ "horizontalHoverLine": false
241
+ },
242
+ "useLogScale": false,
243
+ "filterBehavior": "Filter Change",
244
+ "highlightedBarValues": [],
245
+ "series": [
246
+ {
247
+ "dataKey": "Outreach Costs",
248
+ "type": "Bar",
249
+ "axis": "Left",
250
+ "tooltip": true,
251
+ "name": "",
252
+ "lineType": "curveCardinal"
253
+ },
254
+ {
255
+ "dataKey": "New Participants",
256
+ "type": "Line",
257
+ "axis": "Right",
258
+ "tooltip": true,
259
+ "name": "",
260
+ "lineType": "curveLinear"
261
+ }
262
+ ],
263
+ "tooltips": {
264
+ "opacity": 90,
265
+ "singleSeries": false,
266
+ "dateDisplayFormat": "%m/%d"
267
+ },
268
+ "forestPlot": {
269
+ "startAt": 0,
270
+ "colors": {
271
+ "line": "",
272
+ "shape": ""
273
+ },
274
+ "lineOfNoEffect": {
275
+ "show": true
276
+ },
277
+ "type": "",
278
+ "pooledResult": {
279
+ "diamondHeight": 5,
280
+ "column": ""
281
+ },
282
+ "estimateField": "",
283
+ "estimateRadius": "",
284
+ "shape": "square",
285
+ "rowHeight": 20,
286
+ "description": {
287
+ "show": true,
288
+ "text": "description",
289
+ "location": 0
290
+ },
291
+ "result": {
292
+ "show": true,
293
+ "text": "result",
294
+ "location": 100
295
+ },
296
+ "radius": {
297
+ "min": 2,
298
+ "max": 10,
299
+ "scalingColumn": ""
300
+ },
301
+ "regression": {
302
+ "lower": 0,
303
+ "upper": 0,
304
+ "estimateField": 0
305
+ },
306
+ "leftWidthOffset": 0,
307
+ "rightWidthOffset": 0,
308
+ "showZeroLine": false,
309
+ "leftLabel": "",
310
+ "rightLabel": ""
311
+ },
312
+ "area": {
313
+ "isStacked": false
314
+ },
315
+ "datasets": {},
316
+ "visualizationType": "Combo",
317
+ "data": [
318
+ {
319
+ "Date": "5/15/2022",
320
+ "New Participants": "70",
321
+ "Outreach Costs": "160000"
322
+ },
323
+ {
324
+ "Date": "8/15/2022",
325
+ "New Participants": "75",
326
+ "Outreach Costs": "170000"
327
+ },
328
+ {
329
+ "Date": "3/15/2022",
330
+ "New Participants": "80",
331
+ "Outreach Costs": "238000"
332
+ },
333
+ {
334
+ "Date": "1/15/2022",
335
+ "New Participants": "90",
336
+ "Outreach Costs": "252000"
337
+ },
338
+ {
339
+ "Date": "6/15/2022",
340
+ "New Participants": "100",
341
+ "Outreach Costs": "280000"
342
+ },
343
+ {
344
+ "Date": "9/15/2022",
345
+ "New Participants": "120",
346
+ "Outreach Costs": "368000"
347
+ },
348
+ {
349
+ "Date": "7/15/2022",
350
+ "New Participants": "132",
351
+ "Outreach Costs": "380000"
352
+ },
353
+ {
354
+ "Date": "4/15/2022",
355
+ "New Participants": "146",
356
+ "Outreach Costs": "480000"
357
+ },
358
+ {
359
+ "Date": "2/15/2022",
360
+ "New Participants": "150",
361
+ "Outreach Costs": "410000"
362
+ }
363
+ ],
364
+ "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/61-bar-line-combo-2-value-axes.csv",
365
+ "dataFileSourceType": "url",
366
+ "filters": [],
367
+ "dataDescription": {
368
+ "horizontal": false,
369
+ "series": true,
370
+ "singleRow": true
371
+ },
372
+ "validated": 4.23,
373
+ "description": "Subtext: 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>",
374
+ "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>",
375
+ "superTitle": "<sup>Super</sup> Title",
376
+ "dynamicMarginTop": 0,
377
+ "footnotes": "Footnotes: 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>"
378
+ }