@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.
- package/.claude/settings.local.json +9 -0
- package/dist/{cdcchart-1a1724a1.es.js → cdcchart-dgT_1dIT.es.js} +136 -151
- package/dist/cdcchart.js +44236 -40355
- package/examples/feature/__data__/planet-example-data.json +0 -30
- package/examples/feature/boxplot/valid-boxplot.csv +38 -17
- package/examples/grouped-bar-test.json +400 -0
- package/examples/private/DEV-11825.json +573 -0
- package/examples/private/d.json +382 -0
- package/examples/private/example-2.json +49784 -0
- package/examples/private/f2.json +1 -0
- package/examples/private/f4.json +1577 -0
- package/examples/private/forecast.json +1180 -0
- package/examples/private/lollipop.json +468 -0
- package/examples/private/na.json +913 -0
- package/examples/private/new.json +48756 -0
- package/examples/private/pie-chart-legend.json +904 -0
- package/examples/private/test-data.csv +28 -0
- package/examples/suppressed_tooltip.json +480 -0
- package/index.html +2 -133
- package/package.json +25 -7
- package/src/CdcChart.tsx +9 -13
- package/src/CdcChartComponent.tsx +403 -92
- package/src/_stories/Chart.Anchors.stories.tsx +2 -2
- package/src/_stories/Chart.BoxPlot.stories.tsx +1 -1
- package/src/_stories/Chart.CI.stories.tsx +1 -1
- package/src/_stories/Chart.Combo.stories.tsx +18 -0
- package/src/_stories/Chart.CustomColors.stories.tsx +1 -1
- package/src/_stories/Chart.DynamicSeries.stories.tsx +2 -2
- package/src/_stories/Chart.Filters.stories.tsx +2 -2
- package/src/_stories/Chart.Forecast.stories.tsx +36 -0
- package/src/_stories/Chart.HTMLInDataTable.stories.tsx +520 -0
- package/src/_stories/Chart.Legend.Gradient.stories.tsx +2 -2
- package/src/_stories/Chart.Patterns.stories.tsx +20 -0
- package/src/_stories/Chart.PreserveDecimals.stories.tsx +220 -0
- package/src/_stories/Chart.ScatterPlot.stories.tsx +1 -1
- package/src/_stories/Chart.SmallMultiples.stories.tsx +47 -0
- package/src/_stories/Chart.stories.tsx +8 -5
- package/src/_stories/Chart.tooltip.stories.tsx +1 -1
- package/src/_stories/ChartAnnotation.stories.tsx +7 -4
- package/src/_stories/ChartAxisLabels.stories.tsx +2 -2
- package/src/_stories/ChartAxisTitles.stories.tsx +2 -2
- package/src/_stories/ChartBar.Editor.stories.tsx +3580 -0
- package/src/_stories/ChartEditor.Editor.stories.tsx +658 -0
- package/src/_stories/ChartEditor.stories.tsx +59 -60
- package/src/_stories/ChartLine.Suppression.stories.tsx +1 -1
- package/src/_stories/ChartLine.Symbols.stories.tsx +1 -1
- package/src/_stories/ChartPrefixSuffix.stories.tsx +2 -2
- package/src/_stories/_mock/combo.json +451 -0
- package/src/_stories/_mock/editor-test-configs.json +376 -0
- package/src/_stories/_mock/editor-test-datasets.json +477 -0
- package/src/_stories/_mock/editor-tests/bar-chart-editor-test.json +255 -0
- package/src/_stories/_mock/editor-tests/bar-chart-general-test.json +267 -0
- package/src/_stories/_mock/editor-tests/bar-chart-test.json +237 -0
- package/src/_stories/_mock/forecast_combo_with_gaps.json +913 -0
- package/src/_stories/_mock/pie_config.json +257 -62
- package/src/_stories/_mock/small_multiples/small_multiples_bars.json +1944 -0
- package/src/_stories/_mock/small_multiples/small_multiples_big_data_bars.json +1114 -0
- package/src/_stories/_mock/small_multiples/small_multiples_lines.json +2646 -0
- package/src/_stories/_mock/small_multiples/small_multiples_lines_colors.json +1305 -0
- package/src/_stories/_mock/small_multiples/small_multiples_stacked_bars.json +1936 -0
- package/src/_stories/_mock/stacked-pattern-test.json +520 -0
- package/src/components/Annotations/components/AnnotationDraggable.tsx +1 -0
- package/src/components/Annotations/components/AnnotationDropdown.tsx +1 -1
- package/src/components/Annotations/components/findNearestDatum.ts +6 -41
- package/src/components/AreaChart/components/AreaChart.Stacked.jsx +10 -6
- package/src/components/AreaChart/index.tsx +1 -2
- package/src/components/BarChart/components/BarChart.Horizontal.tsx +161 -22
- package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +138 -5
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +215 -73
- package/src/components/BarChart/components/BarChart.Vertical.tsx +155 -22
- package/src/components/BarChart/helpers/index.ts +43 -4
- package/src/components/BarChart/helpers/lollipopColors.ts +27 -0
- package/src/components/BarChart/helpers/useBarChart.ts +25 -3
- package/src/components/BoxPlot/BoxPlot.Vertical.tsx +2 -1
- package/src/components/BoxPlot/helpers/index.ts +3 -3
- package/src/components/Brush/BrushChart.tsx +1 -1
- package/src/components/DeviationBar.jsx +9 -6
- package/src/components/EditorPanel/EditorPanel.tsx +563 -229
- package/src/components/EditorPanel/EditorPanelContext.ts +3 -0
- package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +96 -111
- package/src/components/EditorPanel/components/Panels/Panel.General.tsx +19 -1
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +461 -0
- package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +80 -67
- package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +422 -0
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +188 -139
- package/src/components/EditorPanel/components/Panels/index.tsx +5 -1
- package/src/components/EditorPanel/components/Panels/panelVisual.styles.css +0 -8
- package/src/components/EditorPanel/editor-panel.scss +0 -20
- package/src/components/EditorPanel/helpers/updateFieldRankByValue.ts +49 -48
- package/src/components/EditorPanel/useEditorPermissions.ts +7 -15
- package/src/components/Forecasting/Forecasting.tsx +175 -27
- package/src/components/ForestPlot/ForestPlot.tsx +11 -7
- package/src/components/ForestPlot/ForestPlotProps.ts +1 -1
- package/src/components/Legend/Legend.Component.tsx +114 -14
- package/src/components/Legend/helpers/createFormatLabels.tsx +230 -171
- package/src/components/Legend/helpers/getLegendClasses.ts +0 -1
- package/src/components/LegendWrapper.tsx +1 -1
- package/src/components/LineChart/LineChartProps.ts +0 -3
- package/src/components/LineChart/components/LineChart.Circle.tsx +2 -2
- package/src/components/LineChart/helpers.ts +1 -1
- package/src/components/LineChart/index.tsx +38 -15
- package/src/components/LinearChart.tsx +96 -84
- package/src/components/PairedBarChart.jsx +6 -4
- package/src/components/PieChart/PieChart.tsx +170 -54
- package/src/components/Regions/components/Regions.tsx +3 -24
- package/src/components/Sankey/components/Sankey.tsx +7 -1
- package/src/components/Sankey/types/index.ts +1 -1
- package/src/components/ScatterPlot/ScatterPlot.jsx +32 -4
- package/src/components/SmallMultiples/SmallMultipleTile.tsx +198 -0
- package/src/components/SmallMultiples/SmallMultiples.css +32 -0
- package/src/components/SmallMultiples/SmallMultiples.tsx +271 -0
- package/src/components/SmallMultiples/index.ts +2 -0
- package/src/data/initial-state.js +327 -293
- package/src/helpers/buildForecastPaletteMappings.ts +112 -0
- package/src/helpers/buildForecastPaletteOptions.ts +71 -0
- package/src/helpers/getColorScale.ts +82 -8
- package/src/{hooks/useMinMax.ts → helpers/getMinMax.ts} +14 -7
- package/src/helpers/getNewRuntime.ts +1 -1
- package/src/helpers/getTransformedData.ts +1 -1
- package/src/helpers/getYAxisAutoPadding.ts +53 -0
- package/src/helpers/smallMultiplesHelpers.ts +529 -0
- package/src/hooks/useChartHoverAnalytics.tsx +44 -0
- package/src/hooks/useProgrammaticTooltip.ts +96 -0
- package/src/hooks/useReduceData.ts +105 -70
- package/src/hooks/useScales.ts +88 -34
- package/src/hooks/useSmallMultipleSynchronization.ts +59 -0
- package/src/hooks/useTooltip.tsx +116 -29
- package/src/index.jsx +0 -2
- package/src/scss/main.scss +13 -80
- package/src/store/chart.actions.ts +2 -0
- package/src/store/chart.reducer.ts +5 -1
- package/src/test/CdcChart.test.jsx +8 -3
- package/src/types/ChartConfig.ts +53 -11
- package/src/types/ChartContext.ts +4 -0
- package/vite.config.js +1 -1
- package/vitest.config.ts +16 -0
- package/src/_stories/_mock/pie_data.json +0 -218
- package/src/components/AreaChart/components/AreaChart.jsx +0 -109
- package/src/coreStyles_chart.scss +0 -3
- package/src/helpers/configHelpers.ts +0 -28
- package/src/helpers/generateColorsArray.ts +0 -8
- package/src/helpers/sort.ts +0 -7
- package/src/hooks/useActiveElement.js +0 -19
- package/src/hooks/useChartClasses.js +0 -41
- package/src/hooks/useColorPalette.js +0 -76
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
{
|
|
2
|
+
"area_chart_config": {
|
|
3
|
+
"type": "chart",
|
|
4
|
+
"title": "Area Chart Editor Test",
|
|
5
|
+
"showTitle": true,
|
|
6
|
+
"visualizationType": "Area Chart",
|
|
7
|
+
"theme": "theme-blue",
|
|
8
|
+
"fontSize": "medium",
|
|
9
|
+
"orientation": "vertical",
|
|
10
|
+
"xAxis": {
|
|
11
|
+
"type": "date",
|
|
12
|
+
"dataKey": "Date",
|
|
13
|
+
"label": "Date",
|
|
14
|
+
"dateParseFormat": "%Y-%m-%d",
|
|
15
|
+
"dateDisplayFormat": "%m/%d/%Y",
|
|
16
|
+
"size": 50
|
|
17
|
+
},
|
|
18
|
+
"yAxis": {
|
|
19
|
+
"label": "Value",
|
|
20
|
+
"size": 50,
|
|
21
|
+
"gridLines": true
|
|
22
|
+
},
|
|
23
|
+
"series": [
|
|
24
|
+
{
|
|
25
|
+
"dataKey": "Value",
|
|
26
|
+
"type": "Area Chart"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"dataKey": "Secondary_Value",
|
|
30
|
+
"type": "Area Chart"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"legend": {
|
|
34
|
+
"position": "right",
|
|
35
|
+
"label": "Legend"
|
|
36
|
+
},
|
|
37
|
+
"visual": {
|
|
38
|
+
"border": true,
|
|
39
|
+
"accent": true,
|
|
40
|
+
"background": true
|
|
41
|
+
},
|
|
42
|
+
"palette": "qualitative-bold",
|
|
43
|
+
"area": {
|
|
44
|
+
"isStacked": false
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
"bar_chart_config": {
|
|
49
|
+
"type": "chart",
|
|
50
|
+
"title": "Bar Chart Editor Test",
|
|
51
|
+
"showTitle": true,
|
|
52
|
+
"visualizationType": "Bar",
|
|
53
|
+
"theme": "theme-green",
|
|
54
|
+
"fontSize": "medium",
|
|
55
|
+
"orientation": "vertical",
|
|
56
|
+
"xAxis": {
|
|
57
|
+
"type": "categorical",
|
|
58
|
+
"dataKey": "State",
|
|
59
|
+
"label": "State",
|
|
60
|
+
"size": 50,
|
|
61
|
+
"tickRotation": 45
|
|
62
|
+
},
|
|
63
|
+
"yAxis": {
|
|
64
|
+
"label": "Value",
|
|
65
|
+
"size": 50,
|
|
66
|
+
"gridLines": true
|
|
67
|
+
},
|
|
68
|
+
"series": [
|
|
69
|
+
{
|
|
70
|
+
"dataKey": "Value",
|
|
71
|
+
"type": "Bar"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"legend": {
|
|
75
|
+
"position": "bottom",
|
|
76
|
+
"label": "Data Series"
|
|
77
|
+
},
|
|
78
|
+
"visual": {
|
|
79
|
+
"border": true,
|
|
80
|
+
"accent": true,
|
|
81
|
+
"background": true
|
|
82
|
+
},
|
|
83
|
+
"palette": "qualitative-soft",
|
|
84
|
+
"barThickness": 0.8
|
|
85
|
+
},
|
|
86
|
+
|
|
87
|
+
"line_chart_config": {
|
|
88
|
+
"type": "chart",
|
|
89
|
+
"title": "Line Chart Editor Test",
|
|
90
|
+
"showTitle": true,
|
|
91
|
+
"visualizationType": "Line",
|
|
92
|
+
"theme": "theme-purple",
|
|
93
|
+
"fontSize": "medium",
|
|
94
|
+
"orientation": "vertical",
|
|
95
|
+
"xAxis": {
|
|
96
|
+
"type": "date",
|
|
97
|
+
"dataKey": "Date",
|
|
98
|
+
"label": "Date",
|
|
99
|
+
"dateParseFormat": "%Y-%m-%d",
|
|
100
|
+
"dateDisplayFormat": "%b %Y",
|
|
101
|
+
"size": 50
|
|
102
|
+
},
|
|
103
|
+
"yAxis": {
|
|
104
|
+
"label": "Count",
|
|
105
|
+
"size": 50,
|
|
106
|
+
"gridLines": true
|
|
107
|
+
},
|
|
108
|
+
"series": [
|
|
109
|
+
{
|
|
110
|
+
"dataKey": "Count",
|
|
111
|
+
"type": "Line"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"dataKey": "Value",
|
|
115
|
+
"type": "Line"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"legend": {
|
|
119
|
+
"position": "right",
|
|
120
|
+
"label": "Metrics"
|
|
121
|
+
},
|
|
122
|
+
"visual": {
|
|
123
|
+
"border": true,
|
|
124
|
+
"accent": true,
|
|
125
|
+
"background": true
|
|
126
|
+
},
|
|
127
|
+
"palette": "qualitative-bold",
|
|
128
|
+
"lineDatapointStyle": "hover"
|
|
129
|
+
},
|
|
130
|
+
|
|
131
|
+
"pie_chart_config": {
|
|
132
|
+
"type": "chart",
|
|
133
|
+
"title": "Pie Chart Editor Test",
|
|
134
|
+
"showTitle": true,
|
|
135
|
+
"visualizationType": "Pie",
|
|
136
|
+
"theme": "theme-orange",
|
|
137
|
+
"fontSize": "medium",
|
|
138
|
+
"xAxis": {
|
|
139
|
+
"dataKey": "Category"
|
|
140
|
+
},
|
|
141
|
+
"yAxis": {
|
|
142
|
+
"dataKey": "Value"
|
|
143
|
+
},
|
|
144
|
+
"legend": {
|
|
145
|
+
"position": "right",
|
|
146
|
+
"label": "Categories"
|
|
147
|
+
},
|
|
148
|
+
"visual": {
|
|
149
|
+
"border": true,
|
|
150
|
+
"accent": true,
|
|
151
|
+
"background": true
|
|
152
|
+
},
|
|
153
|
+
"palette": "qualitative-pastel",
|
|
154
|
+
"pieType": "Pie"
|
|
155
|
+
},
|
|
156
|
+
|
|
157
|
+
"combo_chart_config": {
|
|
158
|
+
"type": "chart",
|
|
159
|
+
"title": "Combo Chart Editor Test",
|
|
160
|
+
"showTitle": true,
|
|
161
|
+
"visualizationType": "Combo",
|
|
162
|
+
"theme": "theme-teal",
|
|
163
|
+
"fontSize": "medium",
|
|
164
|
+
"orientation": "vertical",
|
|
165
|
+
"xAxis": {
|
|
166
|
+
"type": "categorical",
|
|
167
|
+
"dataKey": "State",
|
|
168
|
+
"label": "State",
|
|
169
|
+
"size": 50
|
|
170
|
+
},
|
|
171
|
+
"yAxis": {
|
|
172
|
+
"label": "Primary Values",
|
|
173
|
+
"size": 50,
|
|
174
|
+
"gridLines": true,
|
|
175
|
+
"rightHideAxis": false,
|
|
176
|
+
"rightLabel": "Secondary Values"
|
|
177
|
+
},
|
|
178
|
+
"series": [
|
|
179
|
+
{
|
|
180
|
+
"dataKey": "Value",
|
|
181
|
+
"type": "Bar",
|
|
182
|
+
"axis": "Left"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"dataKey": "Rate",
|
|
186
|
+
"type": "Line",
|
|
187
|
+
"axis": "Right"
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
"legend": {
|
|
191
|
+
"position": "bottom",
|
|
192
|
+
"label": "Data Types"
|
|
193
|
+
},
|
|
194
|
+
"visual": {
|
|
195
|
+
"border": true,
|
|
196
|
+
"accent": true,
|
|
197
|
+
"background": true
|
|
198
|
+
},
|
|
199
|
+
"palette": "qualitative-bold"
|
|
200
|
+
},
|
|
201
|
+
|
|
202
|
+
"scatter_plot_config": {
|
|
203
|
+
"type": "chart",
|
|
204
|
+
"title": "Scatter Plot Editor Test",
|
|
205
|
+
"showTitle": true,
|
|
206
|
+
"visualizationType": "Scatter Plot",
|
|
207
|
+
"theme": "theme-blue",
|
|
208
|
+
"fontSize": "medium",
|
|
209
|
+
"orientation": "vertical",
|
|
210
|
+
"xAxis": {
|
|
211
|
+
"type": "linear",
|
|
212
|
+
"dataKey": "X_Value",
|
|
213
|
+
"label": "X Values",
|
|
214
|
+
"size": 50
|
|
215
|
+
},
|
|
216
|
+
"yAxis": {
|
|
217
|
+
"dataKey": "Y_Value",
|
|
218
|
+
"label": "Y Values",
|
|
219
|
+
"size": 50,
|
|
220
|
+
"gridLines": true
|
|
221
|
+
},
|
|
222
|
+
"legend": {
|
|
223
|
+
"position": "right",
|
|
224
|
+
"label": "Categories",
|
|
225
|
+
"colorCode": "Category"
|
|
226
|
+
},
|
|
227
|
+
"visual": {
|
|
228
|
+
"border": true,
|
|
229
|
+
"accent": true,
|
|
230
|
+
"background": true
|
|
231
|
+
},
|
|
232
|
+
"palette": "qualitative-bold"
|
|
233
|
+
},
|
|
234
|
+
|
|
235
|
+
"box_plot_config": {
|
|
236
|
+
"type": "chart",
|
|
237
|
+
"title": "Box Plot Editor Test",
|
|
238
|
+
"showTitle": true,
|
|
239
|
+
"visualizationType": "Box Plot",
|
|
240
|
+
"theme": "theme-green",
|
|
241
|
+
"fontSize": "medium",
|
|
242
|
+
"orientation": "vertical",
|
|
243
|
+
"xAxis": {
|
|
244
|
+
"type": "categorical",
|
|
245
|
+
"dataKey": "Group_Category",
|
|
246
|
+
"label": "Groups",
|
|
247
|
+
"size": 75
|
|
248
|
+
},
|
|
249
|
+
"yAxis": {
|
|
250
|
+
"dataKey": "Value",
|
|
251
|
+
"label": "Observations",
|
|
252
|
+
"size": 50,
|
|
253
|
+
"gridLines": true
|
|
254
|
+
},
|
|
255
|
+
"boxplot": {
|
|
256
|
+
"borders": "true",
|
|
257
|
+
"plotOutlierValues": false,
|
|
258
|
+
"plotNonOutlierValues": true,
|
|
259
|
+
"labels": {
|
|
260
|
+
"q1": "Lower Quartile",
|
|
261
|
+
"q3": "Upper Quartile",
|
|
262
|
+
"minimum": "Minimum",
|
|
263
|
+
"maximum": "Maximum",
|
|
264
|
+
"mean": "Mean",
|
|
265
|
+
"median": "Median"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"legend": {
|
|
269
|
+
"position": "right"
|
|
270
|
+
},
|
|
271
|
+
"visual": {
|
|
272
|
+
"border": true,
|
|
273
|
+
"accent": true,
|
|
274
|
+
"background": true
|
|
275
|
+
},
|
|
276
|
+
"palette": "qualitative1"
|
|
277
|
+
},
|
|
278
|
+
|
|
279
|
+
"sankey_config": {
|
|
280
|
+
"type": "chart",
|
|
281
|
+
"title": "Sankey Chart Editor Test",
|
|
282
|
+
"showTitle": true,
|
|
283
|
+
"visualizationType": "Sankey",
|
|
284
|
+
"theme": "theme-purple",
|
|
285
|
+
"fontSize": "medium",
|
|
286
|
+
"sankey": {
|
|
287
|
+
"title": {
|
|
288
|
+
"defaultColor": "black"
|
|
289
|
+
},
|
|
290
|
+
"iterations": 1,
|
|
291
|
+
"rxValue": 0.9,
|
|
292
|
+
"overallSize": {
|
|
293
|
+
"width": 900,
|
|
294
|
+
"height": 700
|
|
295
|
+
},
|
|
296
|
+
"margin": {
|
|
297
|
+
"margin_y": 25,
|
|
298
|
+
"margin_x": 0
|
|
299
|
+
},
|
|
300
|
+
"nodeSize": {
|
|
301
|
+
"nodeWidth": 26,
|
|
302
|
+
"nodeHeight": 40
|
|
303
|
+
},
|
|
304
|
+
"nodePadding": 55,
|
|
305
|
+
"nodeFontColor": "black",
|
|
306
|
+
"nodeColor": {
|
|
307
|
+
"default": "#ff8500",
|
|
308
|
+
"inactive": "#808080"
|
|
309
|
+
},
|
|
310
|
+
"linkColor": {
|
|
311
|
+
"default": "#ffc900",
|
|
312
|
+
"inactive": "#D3D3D3"
|
|
313
|
+
},
|
|
314
|
+
"opacity": {
|
|
315
|
+
"nodeOpacityDefault": 1,
|
|
316
|
+
"nodeOpacityInactive": 0.1,
|
|
317
|
+
"LinkOpacityDefault": 1,
|
|
318
|
+
"LinkOpacityInactive": 0.1
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"visual": {
|
|
322
|
+
"border": true,
|
|
323
|
+
"accent": true,
|
|
324
|
+
"background": true
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
|
|
328
|
+
"forecasting_config": {
|
|
329
|
+
"type": "chart",
|
|
330
|
+
"title": "Forecasting Chart Editor Test",
|
|
331
|
+
"showTitle": true,
|
|
332
|
+
"visualizationType": "Forecasting",
|
|
333
|
+
"theme": "theme-teal",
|
|
334
|
+
"fontSize": "medium",
|
|
335
|
+
"orientation": "vertical",
|
|
336
|
+
"xAxis": {
|
|
337
|
+
"type": "date",
|
|
338
|
+
"dataKey": "Date",
|
|
339
|
+
"label": "Date",
|
|
340
|
+
"dateParseFormat": "%Y-%m-%d",
|
|
341
|
+
"dateDisplayFormat": "%b %Y",
|
|
342
|
+
"size": 50
|
|
343
|
+
},
|
|
344
|
+
"yAxis": {
|
|
345
|
+
"label": "Values",
|
|
346
|
+
"size": 50,
|
|
347
|
+
"gridLines": true
|
|
348
|
+
},
|
|
349
|
+
"series": [
|
|
350
|
+
{
|
|
351
|
+
"dataKey": "Actual_Value",
|
|
352
|
+
"type": "Line"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"dataKey": "Forecast_Value",
|
|
356
|
+
"type": "Line"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"confidenceKeys": {
|
|
360
|
+
"lower": "Lower_CI",
|
|
361
|
+
"upper": "Upper_CI",
|
|
362
|
+
"forecastLower": "Forecast_Lower",
|
|
363
|
+
"forecastUpper": "Forecast_Upper"
|
|
364
|
+
},
|
|
365
|
+
"legend": {
|
|
366
|
+
"position": "bottom",
|
|
367
|
+
"label": "Forecasting Data"
|
|
368
|
+
},
|
|
369
|
+
"visual": {
|
|
370
|
+
"border": true,
|
|
371
|
+
"accent": true,
|
|
372
|
+
"background": true
|
|
373
|
+
},
|
|
374
|
+
"palette": "qualitative-bold"
|
|
375
|
+
}
|
|
376
|
+
}
|