@cdc/chart 4.23.11 → 4.24.1

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 (103) hide show
  1. package/dist/cdcchart.js +30220 -29764
  2. package/examples/feature/bar/additional-column-tooltip.json +446 -0
  3. package/examples/feature/bar/tall-data.json +98 -0
  4. package/examples/feature/forest-plot/forest-plot.json +63 -19
  5. package/examples/feature/forest-plot/linear.json +52 -3
  6. package/examples/feature/forest-plot/log.json +26 -0
  7. package/examples/feature/forest-plot/logarithmic.json +0 -35
  8. package/examples/feature/line/line-chart-preliminary.json +346 -0
  9. package/examples/feature/scatterplot/scatterplot.json +272 -33
  10. package/examples/private/chart-t.json +3740 -0
  11. package/examples/private/combo.json +369 -0
  12. package/examples/private/epi-data.csv +13 -0
  13. package/examples/private/epi-data.json +62 -0
  14. package/examples/private/epi.json +403 -0
  15. package/examples/private/occupancy.json +109283 -0
  16. package/examples/private/prod-line-config.json +401 -0
  17. package/examples/private/region-data.json +822 -0
  18. package/examples/private/region-testing.json +312 -0
  19. package/examples/private/scaling.json +45325 -0
  20. package/examples/private/testing-data.json +1739 -0
  21. package/examples/private/testing.json +816 -0
  22. package/index.html +7 -7
  23. package/package.json +2 -2
  24. package/src/CdcChart.tsx +29 -210
  25. package/src/ConfigContext.tsx +6 -0
  26. package/src/_stories/ChartEditor.stories.tsx +22 -0
  27. package/src/_stories/ChartLine.preliminary.tsx +19 -0
  28. package/src/_stories/_mock/pie_config.json +191 -0
  29. package/src/_stories/_mock/pie_data.json +218 -0
  30. package/src/_stories/_mock/preliminary_mock.json +346 -0
  31. package/src/components/{AreaChart.Stacked.jsx → AreaChart/components/AreaChart.Stacked.jsx} +2 -2
  32. package/src/components/{AreaChart.jsx → AreaChart/components/AreaChart.jsx} +1 -1
  33. package/src/components/AreaChart/index.tsx +4 -0
  34. package/src/components/{BarChart.Horizontal.tsx → BarChart/components/BarChart.Horizontal.tsx} +8 -8
  35. package/src/components/{BarChart.StackedHorizontal.tsx → BarChart/components/BarChart.StackedHorizontal.tsx} +37 -7
  36. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +106 -0
  37. package/src/components/{BarChart.Vertical.tsx → BarChart/components/BarChart.Vertical.tsx} +41 -57
  38. package/src/components/BarChart/components/BarChart.jsx +39 -0
  39. package/src/components/{BarChartType.jsx → BarChart/components/BarChartType.jsx} +0 -2
  40. package/src/components/BarChart/components/context.tsx +13 -0
  41. package/src/components/BarChart/index.tsx +3 -0
  42. package/src/components/{BoxPlot.jsx → BoxPlot/BoxPlot.jsx} +1 -1
  43. package/src/components/BoxPlot/index.tsx +3 -0
  44. package/src/components/{EditorPanel.jsx → EditorPanel/EditorPanel.tsx} +667 -851
  45. package/src/components/EditorPanel/components/Panel.DateHighlighting.tsx +109 -0
  46. package/src/components/{ForestPlotSettings.jsx → EditorPanel/components/Panel.ForestPlotSettings.tsx} +87 -166
  47. package/src/components/EditorPanel/components/Panel.Regions.tsx +168 -0
  48. package/src/components/{Series.jsx → EditorPanel/components/Panel.Series.tsx} +1 -1
  49. package/src/components/EditorPanel/components/PanelProps.ts +3 -0
  50. package/src/components/EditorPanel/components/Panels.tsx +13 -0
  51. package/src/components/EditorPanel/components/panels.scss +72 -0
  52. package/src/components/EditorPanel/editor-panel.scss +751 -0
  53. package/src/components/EditorPanel/index.tsx +3 -0
  54. package/src/{hooks → components/EditorPanel}/useEditorPermissions.js +29 -2
  55. package/src/components/{Forecasting.jsx → Forecasting/Forecasting.jsx} +1 -1
  56. package/src/components/Forecasting/index.tsx +3 -0
  57. package/src/components/ForestPlot/ForestPlot.tsx +254 -0
  58. package/src/components/ForestPlot/ForestPlotProps.ts +7 -0
  59. package/src/components/ForestPlot/index.tsx +1 -209
  60. package/src/components/{Legend.jsx → Legend/Legend.tsx} +150 -113
  61. package/src/components/Legend/index.tsx +3 -0
  62. package/src/components/LineChart/LineChartProps.ts +29 -0
  63. package/src/components/LineChart/{LineChart.Circle.tsx → components/LineChart.Circle.tsx} +12 -3
  64. package/src/components/LineChart/helpers.ts +45 -0
  65. package/src/components/LineChart/index.tsx +20 -8
  66. package/src/components/LinearChart.jsx +52 -69
  67. package/src/components/{PieChart.jsx → PieChart/PieChart.tsx} +16 -7
  68. package/src/components/PieChart/index.tsx +3 -0
  69. package/src/components/Regions/components/Regions.tsx +135 -0
  70. package/src/components/Regions/index.tsx +3 -0
  71. package/src/components/{ScatterPlot.jsx → ScatterPlot/ScatterPlot.jsx} +3 -3
  72. package/src/components/ScatterPlot/index.tsx +3 -0
  73. package/src/components/{SparkLine.jsx → Sparkline/SparkLine.jsx} +2 -2
  74. package/src/components/Sparkline/index.tsx +3 -0
  75. package/src/data/initial-state.js +5 -6
  76. package/src/helpers/abbreviateNumber.ts +17 -0
  77. package/src/helpers/computeMarginBottom.ts +55 -0
  78. package/src/helpers/filterData.ts +18 -0
  79. package/src/helpers/generateColorsArray.ts +8 -0
  80. package/src/helpers/getQuartiles.ts +30 -0
  81. package/src/helpers/handleChartAriaLabels.ts +19 -0
  82. package/src/helpers/handleLineType.ts +18 -0
  83. package/src/helpers/lineOptions.ts +18 -0
  84. package/src/helpers/sort.ts +7 -0
  85. package/src/helpers/tests/computeMarginBottom.test.ts +20 -0
  86. package/src/hooks/useBarChart.js +7 -6
  87. package/src/hooks/useScales.ts +1 -1
  88. package/src/hooks/{useTooltip.jsx → useTooltip.tsx} +23 -21
  89. package/src/scss/main.scss +67 -3
  90. package/src/types/ChartConfig.ts +158 -23
  91. package/src/types/ChartContext.ts +26 -10
  92. package/src/types/ForestPlot.ts +7 -14
  93. package/examples/feature/scatterplot/scatterplot-continuous.csv +0 -17
  94. package/src/ConfigContext.jsx +0 -5
  95. package/src/components/BarChart.StackedVertical.tsx +0 -91
  96. package/src/components/BarChart.jsx +0 -30
  97. package/src/components/ForestPlot/Readme.md +0 -0
  98. package/src/scss/LinearChart.scss +0 -0
  99. package/src/scss/editor-panel.scss +0 -745
  100. package/src/scss/legend.scss +0 -206
  101. package/src/scss/mixins.scss +0 -0
  102. package/src/scss/variables.scss +0 -1
  103. package/src/types/ChartProps.ts +0 -7
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "type": "chart",
3
3
  "debugSvg": false,
4
+ "chartMessage": {
5
+ "noData": "No Data Available"
6
+ },
4
7
  "title": "Forest Plot Example",
5
8
  "showTitle": true,
6
9
  "showDownloadMediaButton": false,
@@ -8,6 +11,7 @@
8
11
  "animate": false,
9
12
  "fontSize": "medium",
10
13
  "lineDatapointStyle": "hover",
14
+ "lineDatapointColor": "Same as Line",
11
15
  "barHasBorder": "false",
12
16
  "isLollipopChart": false,
13
17
  "lollipopShape": "circle",
@@ -24,6 +28,7 @@
24
28
  "left": 5,
25
29
  "right": 5
26
30
  },
31
+ "suppressedData": [],
27
32
  "yAxis": {
28
33
  "hideAxis": true,
29
34
  "displayNumbersOnBar": false,
@@ -94,6 +99,7 @@
94
99
  "horizontal": 750
95
100
  },
96
101
  "xAxis": {
102
+ "sortDates": false,
97
103
  "anchors": [],
98
104
  "type": "categorical",
99
105
  "showTargetLabel": true,
@@ -115,7 +121,8 @@
115
121
  "maxTickRotation": 0,
116
122
  "dataKey": "Author(s) and Year",
117
123
  "label": "",
118
- "labelPlacement": "On Date/Category Axis"
124
+ "labelPlacement": "On Date/Category Axis",
125
+ "tickWidthMax": 37
119
126
  },
120
127
  "table": {
121
128
  "label": "Data Table",
@@ -133,18 +140,27 @@
133
140
  "orientation": "horizontal",
134
141
  "color": "pinkpurple",
135
142
  "columns": {
136
- "additionalColumn4": {
137
- "label": "Result",
143
+ "Estimate": {
144
+ "dataKey": "Estimate",
145
+ "name": "Estimate",
146
+ "dataTable": true,
147
+ "tooltips": true
148
+ },
149
+ "Lower": {
150
+ "dataKey": "Lower",
151
+ "name": "Lower",
152
+ "dataTable": true,
153
+ "tooltips": true
154
+ },
155
+ "Upper": {
156
+ "dataKey": "Upper",
157
+ "name": "Upper",
138
158
  "dataTable": true,
139
- "tooltips": false,
140
- "prefix": "",
141
- "suffix": "",
142
- "name": "Result",
143
- "forestPlotAlignRight": true,
144
- "forestPlot": true
159
+ "tooltips": true
145
160
  }
146
161
  },
147
162
  "legend": {
163
+ "hide": true,
148
164
  "behavior": "isolate",
149
165
  "singleRow": false,
150
166
  "colorCode": "",
@@ -155,7 +171,14 @@
155
171
  "dynamicLegendItemLimit": 5,
156
172
  "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
157
173
  "dynamicLegendChartMessage": "Select Options from the Legend",
158
- "hide": true
174
+ "lineMode": false,
175
+ "verticalSorted": false,
176
+ "highlightOnHover": false
177
+ },
178
+ "brush": {
179
+ "height": 25,
180
+ "data": [],
181
+ "active": false
159
182
  },
160
183
  "exclusions": {
161
184
  "active": true,
@@ -188,9 +211,17 @@
188
211
  "useLogScale": false,
189
212
  "filterBehavior": "Filter Change",
190
213
  "highlightedBarValues": [],
191
- "series": [],
214
+ "series": [
215
+ {
216
+ "dataKey": "Confidence",
217
+ "type": "Forest Plot",
218
+ "axis": "Left",
219
+ "tooltip": true
220
+ }
221
+ ],
192
222
  "tooltips": {
193
- "opacity": 90
223
+ "opacity": 90,
224
+ "singleSeries": false
194
225
  },
195
226
  "forestPlot": {
196
227
  "startAt": "0",
@@ -198,13 +229,18 @@
198
229
  "line": "",
199
230
  "shape": ""
200
231
  },
232
+ "lineOfNoEffect": {
233
+ "show": true
234
+ },
235
+ "type": "Linear",
236
+ "pooledResult": {
237
+ "diamondHeight": 5,
238
+ "column": ""
239
+ },
201
240
  "estimateField": "Estimate",
202
241
  "estimateRadius": "",
203
- "lowerCiField": "",
204
- "upperCiField": "",
205
242
  "shape": "circle",
206
243
  "rowHeight": "20",
207
- "showZeroLine": true,
208
244
  "description": {
209
245
  "show": true,
210
246
  "text": "description",
@@ -216,9 +252,9 @@
216
252
  "location": 100
217
253
  },
218
254
  "radius": {
219
- "min": 1,
255
+ "min": 3,
220
256
  "max": 5,
221
- "scalingColumn": "Estimate"
257
+ "scalingColumn": "N"
222
258
  },
223
259
  "regression": {
224
260
  "showBaseLine": true,
@@ -227,6 +263,13 @@
227
263
  "lower": "#87c4c3",
228
264
  "estimateField": "-10"
229
265
  },
266
+ "leftWidthOffset": "15",
267
+ "rightWidthOffset": "25",
268
+ "showZeroLine": true,
269
+ "leftLabel": "left",
270
+ "rightLabel": "right",
271
+ "lowerCiField": "",
272
+ "upperCiField": "",
230
273
  "hasZeroLine": true,
231
274
  "lower": "Lower",
232
275
  "upper": "Upper",
@@ -235,11 +278,12 @@
235
278
  },
236
279
  "title": "Plot Title 2",
237
280
  "padding": "200",
238
- "leftWidthOffset": "15",
239
- "rightWidthOffset": "25",
240
281
  "leftWidthOffsetMobile": "45",
241
282
  "rightWidthOffsetMobile": "45"
242
283
  },
284
+ "area": {
285
+ "isStacked": false
286
+ },
243
287
  "datasets": {},
244
288
  "visualizationType": "Forest Plot",
245
289
  "data": [
@@ -11,6 +11,7 @@
11
11
  "animate": false,
12
12
  "fontSize": "medium",
13
13
  "lineDatapointStyle": "hover",
14
+ "lineDatapointColor": "Same as Line",
14
15
  "barHasBorder": "false",
15
16
  "isLollipopChart": false,
16
17
  "lollipopShape": "circle",
@@ -117,7 +118,7 @@
117
118
  "target": 0,
118
119
  "maxTickRotation": 0,
119
120
  "dataKey": "Author(s) and Year",
120
- "tickWidthMax": null
121
+ "tickWidthMax": 37
121
122
  },
122
123
  "table": {
123
124
  "label": "Data Table",
@@ -160,7 +161,8 @@
160
161
  "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
161
162
  "dynamicLegendChartMessage": "Select Options from the Legend",
162
163
  "lineMode": false,
163
- "verticalSorted": false
164
+ "verticalSorted": false,
165
+ "highlightOnHover": false
164
166
  },
165
167
  "brush": {
166
168
  "height": 25,
@@ -202,7 +204,54 @@
202
204
  "highlightedBarValues": [],
203
205
  "series": [],
204
206
  "tooltips": {
205
- "opacity": 90
207
+ "opacity": 90,
208
+ "singleSeries": false
209
+ },
210
+ "forestPlot": {
211
+ "startAt": 0,
212
+ "colors": {
213
+ "line": "",
214
+ "shape": ""
215
+ },
216
+ "lineOfNoEffect": {
217
+ "show": true
218
+ },
219
+ "type": "Linear",
220
+ "pooledResult": {
221
+ "diamondHeight": 5,
222
+ "column": "Total"
223
+ },
224
+ "estimateField": "Estimate",
225
+ "estimateRadius": "",
226
+ "rowHeight": 20,
227
+ "description": {
228
+ "show": true,
229
+ "text": "description",
230
+ "location": 0
231
+ },
232
+ "result": {
233
+ "show": true,
234
+ "text": "result",
235
+ "location": 100
236
+ },
237
+ "radius": {
238
+ "min": 3,
239
+ "max": 10,
240
+ "scalingColumn": "N"
241
+ },
242
+ "regression": {
243
+ "lower": 0,
244
+ "upper": 0,
245
+ "estimateField": 0
246
+ },
247
+ "leftWidthOffset": 0,
248
+ "rightWidthOffset": 0,
249
+ "showZeroLine": false,
250
+ "hideDateCategoryCol": false,
251
+ "leftLabel": "",
252
+ "rightLabel": "",
253
+ "lower": "Lower",
254
+ "upper": "Upper"
206
255
  },
207
256
  "area": {
208
257
  "isStacked": false
@@ -0,0 +1,26 @@
1
+ [
2
+ {
3
+ "description": "Study 1",
4
+ "low": 0.88,
5
+ "high": 0.95,
6
+ "effect": 0.92
7
+ },
8
+ {
9
+ "description": "Study 2",
10
+ "low": 0.84,
11
+ "high": 0.94,
12
+ "effect": 0.89
13
+ },
14
+ {
15
+ "description": "Study 3",
16
+ "low": 0.88,
17
+ "high": 0.98,
18
+ "effect": 0.93
19
+ },
20
+ {
21
+ "description": "Study 4",
22
+ "low": 0.91,
23
+ "high": 0.99,
24
+ "effect": 0.97
25
+ }
26
+ ]
@@ -128,41 +128,6 @@
128
128
  },
129
129
  "orientation": "horizontal",
130
130
  "color": "pinkpurple",
131
- "columns": {
132
- "additionalColumn1": {
133
- "label": "Estimate Field",
134
- "dataTable": true,
135
- "tooltips": true,
136
- "prefix": "",
137
- "suffix": "",
138
- "forestPlot": false,
139
- "startingPoint": "0",
140
- "forestPlotAlignRight": false,
141
- "name": "effect"
142
- },
143
- "additionalColumn2": {
144
- "label": "Low",
145
- "dataTable": true,
146
- "tooltips": true,
147
- "prefix": "",
148
- "suffix": "",
149
- "forestPlot": false,
150
- "startingPoint": "0",
151
- "forestPlotAlignRight": false,
152
- "name": "low"
153
- },
154
- "additionalColumn3": {
155
- "label": "High",
156
- "dataTable": true,
157
- "tooltips": true,
158
- "prefix": "",
159
- "suffix": "",
160
- "forestPlot": false,
161
- "startingPoint": "0",
162
- "forestPlotAlignRight": false,
163
- "name": "high"
164
- }
165
- },
166
131
  "legend": {
167
132
  "behavior": "isolate",
168
133
  "singleRow": false,
@@ -0,0 +1,346 @@
1
+ {
2
+ "type": "chart",
3
+ "debugSvg": false,
4
+ "chartMessage": {
5
+ "noData": "No Data Available"
6
+ },
7
+ "title": "Example Stacked Bar Chart",
8
+ "showTitle": true,
9
+ "showDownloadMediaButton": false,
10
+ "theme": "theme-orange",
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": "stacked",
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
+ {
34
+ "type": "effect",
35
+ "label": "Cricle 1",
36
+ "column": "Data 2",
37
+ "value": "20",
38
+ "style": "Open Circles",
39
+ "seriesKey": "Data 1"
40
+ },
41
+ {
42
+ "type": "",
43
+ "label": "Cricle 2",
44
+ "column": "Data 3",
45
+ "value": "20",
46
+ "style": "Open Circles",
47
+ "seriesKey": "Data 1"
48
+ },
49
+ {
50
+ "type": "effect",
51
+ "label": "circle 3",
52
+ "column": "Data 2",
53
+ "value": "30",
54
+ "style": "Open Circles",
55
+ "seriesKey": "Data 1"
56
+ }
57
+ ],
58
+ "yAxis": {
59
+ "hideAxis": false,
60
+ "displayNumbersOnBar": false,
61
+ "hideLabel": false,
62
+ "hideTicks": false,
63
+ "size": "64",
64
+ "gridLines": false,
65
+ "enablePadding": false,
66
+ "min": "",
67
+ "max": "",
68
+ "labelColor": "#333",
69
+ "tickLabelColor": "#333",
70
+ "tickColor": "#333",
71
+ "rightHideAxis": true,
72
+ "rightAxisSize": 0,
73
+ "rightLabel": "",
74
+ "rightLabelOffsetSize": 0,
75
+ "rightAxisLabelColor": "#333",
76
+ "rightAxisTickLabelColor": "#333",
77
+ "rightAxisTickColor": "#333",
78
+ "numTicks": "",
79
+ "axisPadding": 0,
80
+ "tickRotation": 0,
81
+ "anchors": [],
82
+ "label": "Y-Axis Label Example"
83
+ },
84
+ "boxplot": {
85
+ "plots": [],
86
+ "borders": "true",
87
+ "firstQuartilePercentage": 25,
88
+ "thirdQuartilePercentage": 75,
89
+ "boxWidthPercentage": 40,
90
+ "plotOutlierValues": false,
91
+ "plotNonOutlierValues": true,
92
+ "legend": {
93
+ "showHowToReadText": false,
94
+ "howToReadText": ""
95
+ },
96
+ "labels": {
97
+ "q1": "Lower Quartile",
98
+ "q2": "q2",
99
+ "q3": "Upper Quartile",
100
+ "q4": "q4",
101
+ "minimum": "Minimum",
102
+ "maximum": "Maximum",
103
+ "mean": "Mean",
104
+ "median": "Median",
105
+ "sd": "Standard Deviation",
106
+ "iqr": "Interquartile Range",
107
+ "total": "Total",
108
+ "outliers": "Outliers",
109
+ "values": "Values",
110
+ "lowerBounds": "Lower Bounds",
111
+ "upperBounds": "Upper Bounds"
112
+ }
113
+ },
114
+ "topAxis": {
115
+ "hasLine": false
116
+ },
117
+ "isLegendValue": false,
118
+ "barThickness": 0.35,
119
+ "barHeight": 25,
120
+ "barSpace": 15,
121
+ "heights": {
122
+ "vertical": 300,
123
+ "horizontal": 750
124
+ },
125
+ "xAxis": {
126
+ "sortDates": false,
127
+ "anchors": [],
128
+ "type": "categorical",
129
+ "showTargetLabel": true,
130
+ "targetLabel": "Target",
131
+ "hideAxis": false,
132
+ "hideLabel": false,
133
+ "hideTicks": false,
134
+ "size": "67",
135
+ "tickRotation": "25",
136
+ "min": "",
137
+ "max": "",
138
+ "labelColor": "#333",
139
+ "tickLabelColor": "#333",
140
+ "tickColor": "#333",
141
+ "numTicks": "",
142
+ "labelOffset": 65,
143
+ "axisPadding": 0,
144
+ "target": 0,
145
+ "maxTickRotation": 0,
146
+ "dataKey": "Year",
147
+ "label": "X-Axis Label Example",
148
+ "tickWidthMax": 41
149
+ },
150
+ "table": {
151
+ "label": "Data Table",
152
+ "expanded": true,
153
+ "limitHeight": false,
154
+ "height": "",
155
+ "caption": "",
156
+ "showDownloadUrl": false,
157
+ "showDataTableLink": true,
158
+ "indexLabel": "",
159
+ "download": true,
160
+ "showVertical": false,
161
+ "show": true
162
+ },
163
+ "orientation": "vertical",
164
+ "color": "pinkpurple",
165
+ "columns": {},
166
+ "legend": {
167
+ "hide": false,
168
+ "behavior": "isolate",
169
+ "singleRow": false,
170
+ "colorCode": "",
171
+ "reverseLabelOrder": false,
172
+ "description": "",
173
+ "dynamicLegend": false,
174
+ "dynamicLegendDefaultText": "Show All",
175
+ "dynamicLegendItemLimit": 5,
176
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
177
+ "dynamicLegendChartMessage": "Select Options from the Legend",
178
+ "lineMode": false,
179
+ "verticalSorted": false,
180
+ "highlightOnHover": false,
181
+ "position": "right",
182
+ "label": "Data Type"
183
+ },
184
+ "brush": {
185
+ "height": 25,
186
+ "data": [
187
+ {
188
+ "Year": "2015",
189
+ "Data 1": "25",
190
+ "Data 2": "20",
191
+ "Data 3": "55"
192
+ },
193
+ {
194
+ "Year": "2016",
195
+ "Data 1": "35",
196
+ "Data 2": "30",
197
+ "Data 3": "35"
198
+ },
199
+ {
200
+ "Year": "2017",
201
+ "Data 1": "22",
202
+ "Data 2": "38",
203
+ "Data 3": "40"
204
+ },
205
+ {
206
+ "Year": "2018",
207
+ "Data 1": "40",
208
+ "Data 2": "40",
209
+ "Data 3": "20"
210
+ }
211
+ ],
212
+ "active": false
213
+ },
214
+ "exclusions": {
215
+ "active": false,
216
+ "keys": []
217
+ },
218
+ "palette": "qualitative-bold",
219
+ "isPaletteReversed": false,
220
+ "twoColor": {
221
+ "palette": "monochrome-1",
222
+ "isPaletteReversed": false
223
+ },
224
+ "labels": false,
225
+ "dataFormat": {
226
+ "commas": false,
227
+ "prefix": "",
228
+ "suffix": "%",
229
+ "abbreviated": false,
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": "Data 1",
248
+ "type": "Bar",
249
+ "tooltip": true,
250
+ "axis": "Left"
251
+ },
252
+ {
253
+ "dataKey": "Data 2",
254
+ "type": "Bar",
255
+ "tooltip": true,
256
+ "axis": "Left"
257
+ },
258
+ {
259
+ "dataKey": "Data 3",
260
+ "type": "Bar",
261
+ "tooltip": true,
262
+ "axis": "Left"
263
+ }
264
+ ],
265
+ "tooltips": {
266
+ "opacity": 90,
267
+ "singleSeries": false
268
+ },
269
+ "forestPlot": {
270
+ "startAt": 0,
271
+ "colors": {
272
+ "line": "",
273
+ "shape": ""
274
+ },
275
+ "lineOfNoEffect": {
276
+ "show": true
277
+ },
278
+ "type": "",
279
+ "pooledResult": {
280
+ "diamondHeight": 5,
281
+ "column": ""
282
+ },
283
+ "estimateField": "",
284
+ "estimateRadius": "",
285
+ "shape": "square",
286
+ "rowHeight": 20,
287
+ "description": {
288
+ "show": true,
289
+ "text": "description",
290
+ "location": 0
291
+ },
292
+ "result": {
293
+ "show": true,
294
+ "text": "result",
295
+ "location": 100
296
+ },
297
+ "radius": {
298
+ "min": 2,
299
+ "max": 10,
300
+ "scalingColumn": ""
301
+ },
302
+ "regression": {
303
+ "lower": 0,
304
+ "upper": 0,
305
+ "estimateField": 0
306
+ },
307
+ "leftWidthOffset": 0,
308
+ "rightWidthOffset": 0,
309
+ "showZeroLine": false,
310
+ "leftLabel": "",
311
+ "rightLabel": ""
312
+ },
313
+ "area": {
314
+ "isStacked": false
315
+ },
316
+ "height": "375",
317
+ "data": [
318
+ {
319
+ "Year": "2015",
320
+ "Data 1": "25",
321
+ "Data 2": "20",
322
+ "Data 3": "55"
323
+ },
324
+ {
325
+ "Year": "2016",
326
+ "Data 1": "35",
327
+ "Data 2": "30",
328
+ "Data 3": "35"
329
+ },
330
+ {
331
+ "Year": "2017",
332
+ "Data 1": "22",
333
+ "Data 2": "38",
334
+ "Data 3": "40"
335
+ },
336
+ {
337
+ "Year": "2018",
338
+ "Data 1": "40",
339
+ "Data 2": "40",
340
+ "Data 3": "20"
341
+ }
342
+ ],
343
+ "visualizationType": "Line",
344
+ "validated": 4.23,
345
+ "dynamicMarginTop": 0
346
+ }