@cdc/chart 4.23.4 → 4.23.6

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 (42) hide show
  1. package/dist/cdcchart.js +54845 -51755
  2. package/examples/feature/__data__/planet-example-data.json +14 -32
  3. package/examples/feature/__data__/planet-logaritmic-data.json +56 -0
  4. package/examples/feature/area/area-chart-category.json +240 -0
  5. package/examples/feature/bar/example-bar-chart.json +544 -22
  6. package/examples/feature/bar/new.json +561 -0
  7. package/examples/feature/bar/planet-chart-logaritmic-config.json +170 -0
  8. package/examples/feature/boxplot/valid-boxplot.csv +17 -0
  9. package/examples/feature/combo/right-issues.json +190 -0
  10. package/examples/feature/filters/filter-testing.json +37 -3
  11. package/examples/feature/forecasting/combo-forecasting.json +245 -0
  12. package/examples/feature/forecasting/forecasting.json +5325 -0
  13. package/examples/feature/forecasting/index.json +203 -0
  14. package/examples/feature/forecasting/random_data.csv +366 -0
  15. package/examples/feature/line/line-chart.json +3 -3
  16. package/examples/feature/test-highlight/test-highlight-2.json +789 -0
  17. package/examples/feature/test-highlight/test-highlight-vertical.json +561 -0
  18. package/examples/feature/test-highlight/test-highlight.json +100 -0
  19. package/examples/feature/tests-non-numerics/stacked-vertical-bar-example-nonnumerics.json +1 -2
  20. package/examples/gallery/bar-chart-horizontal/horizontal-highlight.json +345 -0
  21. package/examples/gallery/line/line.json +173 -1
  22. package/index.html +14 -8
  23. package/package.json +2 -2
  24. package/src/CdcChart.jsx +342 -25
  25. package/src/components/AreaChart.jsx +32 -40
  26. package/src/components/BarChart.jsx +147 -25
  27. package/src/components/DataTable.jsx +30 -12
  28. package/src/components/DeviationBar.jsx +32 -32
  29. package/src/components/EditorPanel.jsx +1902 -1126
  30. package/src/components/Forecasting.jsx +147 -0
  31. package/src/components/Legend.jsx +193 -243
  32. package/src/components/LineChart.jsx +4 -9
  33. package/src/components/LinearChart.jsx +263 -285
  34. package/src/components/Series.jsx +518 -0
  35. package/src/components/SparkLine.jsx +3 -3
  36. package/src/data/initial-state.js +24 -5
  37. package/src/hooks/useHighlightedBars.js +154 -0
  38. package/src/hooks/useMinMax.js +128 -0
  39. package/src/hooks/useReduceData.js +31 -57
  40. package/src/hooks/useRightAxis.js +8 -2
  41. package/src/hooks/useScales.js +196 -0
  42. /package/examples/feature/area/{area-chart.json → area-chart-date.json} +0 -0
@@ -0,0 +1,203 @@
1
+ {
2
+ "type": "chart",
3
+ "title": "Forecasting Chart Example",
4
+ "showTitle": true,
5
+ "theme": "theme-blue",
6
+ "animate": true,
7
+ "fontSize": "medium",
8
+ "lineDatapointStyle": "hover",
9
+ "barHasBorder": "false",
10
+ "isLollipopChart": false,
11
+ "lollipopShape": "circle",
12
+ "lollipopColorStyle": "two-tone",
13
+ "visualizationSubType": "regular",
14
+ "barStyle": "",
15
+ "roundingStyle": "standard",
16
+ "tipRounding": "top",
17
+ "padding": {
18
+ "left": 0,
19
+ "right": 0
20
+ },
21
+ "yAxis": {
22
+ "hideAxis": false,
23
+ "displayNumbersOnBar": false,
24
+ "hideLabel": false,
25
+ "hideTicks": false,
26
+ "size": "75",
27
+ "gridLines": false,
28
+ "enablePadding": false,
29
+ "min": "0",
30
+ "max": "900",
31
+ "labelColor": "#333",
32
+ "tickLabelColor": "#333",
33
+ "tickColor": "#333",
34
+ "rightHideAxis": false,
35
+ "rightAxisSize": 50,
36
+ "rightLabel": "",
37
+ "rightLabelOffsetSize": 0,
38
+ "rightAxisLabelColor": "#333",
39
+ "rightAxisTickLabelColor": "#333",
40
+ "rightAxisTickColor": "#333",
41
+ "numTicks": "",
42
+ "axisPadding": 0,
43
+ "tickRotation": 0,
44
+ "anchors": [],
45
+ "label": "Cases by Date of Report"
46
+ },
47
+ "boxplot": {
48
+ "plots": [],
49
+ "borders": "true",
50
+ "firstQuartilePercentage": 25,
51
+ "thirdQuartilePercentage": 75,
52
+ "boxWidthPercentage": 40,
53
+ "plotOutlierValues": false,
54
+ "plotNonOutlierValues": true,
55
+ "legend": {
56
+ "showHowToReadText": false,
57
+ "howToReadText": ""
58
+ },
59
+ "labels": {
60
+ "q1": "Lower Quartile",
61
+ "q2": "q2",
62
+ "q3": "Upper Quartile",
63
+ "q4": "q4",
64
+ "minimum": "Minimum",
65
+ "maximum": "Maximum",
66
+ "mean": "Mean",
67
+ "median": "Median",
68
+ "sd": "Standard Deviation",
69
+ "iqr": "Interquartile Range",
70
+ "count": "Count",
71
+ "outliers": "Outliers",
72
+ "values": "Values"
73
+ }
74
+ },
75
+ "topAxis": {
76
+ "hasLine": true
77
+ },
78
+ "isLegendValue": false,
79
+ "barThickness": 0.35,
80
+ "barHeight": 25,
81
+ "barSpace": 15,
82
+ "heights": {
83
+ "vertical": 300,
84
+ "horizontal": 750
85
+ },
86
+ "xAxis": {
87
+ "type": "date",
88
+ "showTargetLabel": true,
89
+ "targetLabel": "Target",
90
+ "hideAxis": false,
91
+ "hideLabel": false,
92
+ "hideTicks": false,
93
+ "size": 75,
94
+ "tickRotation": 30,
95
+ "min": "",
96
+ "max": "",
97
+ "labelColor": "#333",
98
+ "tickLabelColor": "#333",
99
+ "tickColor": "#333",
100
+ "numTicks": "",
101
+ "labelOffset": 65,
102
+ "axisPadding": 0,
103
+ "target": 0,
104
+ "anchors": [
105
+ {
106
+ "value": "10/19/2022",
107
+ "lineStyle": "dashed-md"
108
+ }
109
+ ],
110
+ "label": "",
111
+ "dataKey": "date",
112
+ "dateParseFormat": "%m/%d/%Y",
113
+ "dateDisplayFormat": "%m/%d/%Y"
114
+ },
115
+ "table": {
116
+ "label": "Data Table",
117
+ "expanded": false,
118
+ "limitHeight": false,
119
+ "height": "",
120
+ "caption": "",
121
+ "showDownloadUrl": false,
122
+ "showDataTableLink": true,
123
+ "show": true
124
+ },
125
+ "orientation": "vertical",
126
+ "legend": {
127
+ "behavior": "isolate",
128
+ "singleRow": false,
129
+ "colorCode": "",
130
+ "reverseLabelOrder": false,
131
+ "description": "",
132
+ "dynamicLegend": false,
133
+ "dynamicLegendDefaultText": "Show All",
134
+ "dynamicLegendItemLimit": 5,
135
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
136
+ "dynamicLegendChartMessage": "Select Options from the Legend",
137
+ "position": "right",
138
+ "hide": false
139
+ },
140
+ "exclusions": {
141
+ "active": false,
142
+ "keys": []
143
+ },
144
+ "palette": "sequential-green",
145
+ "isPaletteReversed": false,
146
+ "twoColor": {
147
+ "palette": "monochrome-1",
148
+ "isPaletteReversed": false
149
+ },
150
+ "labels": false,
151
+ "dataFormat": {
152
+ "commas": false,
153
+ "prefix": "",
154
+ "suffix": "",
155
+ "abbreviated": false,
156
+ "bottomSuffix": "",
157
+ "bottomPrefix": "",
158
+ "bottomAbbreviated": false,
159
+ "roundTo": "0"
160
+ },
161
+ "confidenceKeys": {},
162
+ "visual": {
163
+ "border": true,
164
+ "accent": true,
165
+ "background": true
166
+ },
167
+ "filterBehavior": "Filter Change",
168
+ "forecastingChart": {
169
+ "showBars": false,
170
+ "barColumn": "confirm",
171
+ "barColor": "#918e90",
172
+ "confidenceIntervals": [
173
+ {
174
+ "low": "lower_20",
175
+ "high": "upper_20"
176
+ },
177
+ {
178
+ "low": "lower_50",
179
+ "high": "upper_50"
180
+ },
181
+ {
182
+ "low": "lower_90",
183
+ "high": "upper_90"
184
+ }
185
+ ],
186
+ "stages": "type",
187
+ "colors": [
188
+ "sequential-greenreverse",
189
+ "sequential-orange-(MPX)reverse",
190
+ "sequential-blue-2-(MPX)reverse"
191
+ ],
192
+ "groups": [
193
+ "estimate",
194
+ "estimate based on partial data",
195
+ "forecast"
196
+ ],
197
+ "showBarColumn": true
198
+ },
199
+ "dataUrl": "./examples/feature/forecasting/case_date_example.csv",
200
+ "animateReplay": true,
201
+ "visualizationType": "Forecasting",
202
+ "series": []
203
+ }
@@ -0,0 +1,366 @@
1
+ date,quarter,upper_90,lower_90,random_col
2
+ 1/1/2023,quarter one,90,10,67
3
+ 1/2/2023,quarter one,90,10,11
4
+ 1/3/2023,quarter one,90,10,94
5
+ 1/4/2023,quarter one,90,10,95
6
+ 1/5/2023,quarter one,90,10,79
7
+ 1/6/2023,quarter one,90,10,2
8
+ 1/7/2023,quarter one,90,10,36
9
+ 1/8/2023,quarter one,90,10,9
10
+ 1/9/2023,quarter one,90,10,3
11
+ 1/10/2023,quarter one,90,10,64
12
+ 1/11/2023,quarter one,90,10,48
13
+ 1/12/2023,quarter one,90,10,94
14
+ 1/13/2023,quarter one,90,10,38
15
+ 1/14/2023,quarter one,90,10,33
16
+ 1/15/2023,quarter one,90,10,23
17
+ 1/16/2023,quarter one,90,10,13
18
+ 1/17/2023,quarter one,90,10,89
19
+ 1/18/2023,quarter one,90,10,12
20
+ 1/19/2023,quarter one,90,10,24
21
+ 1/20/2023,quarter one,90,10,86
22
+ 1/21/2023,quarter one,90,10,17
23
+ 1/22/2023,quarter one,90,10,37
24
+ 1/23/2023,quarter one,90,10,9
25
+ 1/24/2023,quarter one,90,10,15
26
+ 1/25/2023,quarter one,90,10,7
27
+ 1/26/2023,quarter one,90,10,40
28
+ 1/27/2023,quarter one,90,10,18
29
+ 1/28/2023,quarter one,90,10,67
30
+ 1/29/2023,quarter one,90,10,40
31
+ 1/30/2023,quarter one,90,10,84
32
+ 1/31/2023,quarter one,90,10,81
33
+ 2/1/2023,quarter one,90,10,16
34
+ 2/2/2023,quarter one,90,10,85
35
+ 2/3/2023,quarter one,90,10,48
36
+ 2/4/2023,quarter one,90,10,45
37
+ 2/5/2023,quarter one,90,10,93
38
+ 2/6/2023,quarter one,90,10,77
39
+ 2/7/2023,quarter one,90,10,35
40
+ 2/8/2023,quarter one,90,10,44
41
+ 2/9/2023,quarter one,90,10,57
42
+ 2/10/2023,quarter one,90,10,92
43
+ 2/11/2023,quarter one,90,10,50
44
+ 2/12/2023,quarter one,90,10,81
45
+ 2/13/2023,quarter one,90,10,13
46
+ 2/14/2023,quarter one,90,10,31
47
+ 2/15/2023,quarter one,90,10,52
48
+ 2/16/2023,quarter one,90,10,91
49
+ 2/17/2023,quarter one,90,10,57
50
+ 2/18/2023,quarter one,90,10,79
51
+ 2/19/2023,quarter one,90,10,75
52
+ 2/20/2023,quarter one,90,10,8
53
+ 2/21/2023,quarter one,90,10,11
54
+ 2/22/2023,quarter one,90,10,41
55
+ 2/23/2023,quarter one,90,10,20
56
+ 2/24/2023,quarter one,90,10,80
57
+ 2/25/2023,quarter one,90,10,65
58
+ 2/26/2023,quarter one,90,10,76
59
+ 2/27/2023,quarter one,90,10,11
60
+ 2/28/2023,quarter one,90,10,88
61
+ 3/1/2023,quarter one,90,10,92
62
+ 3/2/2023,quarter one,90,10,53
63
+ 3/3/2023,quarter one,90,10,89
64
+ 3/4/2023,quarter one,90,10,40
65
+ 3/5/2023,quarter one,90,10,26
66
+ 3/6/2023,quarter one,90,10,67
67
+ 3/7/2023,quarter one,90,10,79
68
+ 3/8/2023,quarter one,90,10,13
69
+ 3/9/2023,quarter one,90,10,71
70
+ 3/10/2023,quarter one,90,10,52
71
+ 3/11/2023,quarter one,90,10,69
72
+ 3/12/2023,quarter one,90,10,89
73
+ 3/13/2023,quarter one,90,10,55
74
+ 3/14/2023,quarter one,90,10,77
75
+ 3/15/2023,quarter one,90,10,19
76
+ 3/16/2023,quarter one,90,10,16
77
+ 3/17/2023,quarter one,90,10,33
78
+ 3/18/2023,quarter one,90,10,54
79
+ 3/19/2023,quarter one,90,10,49
80
+ 3/20/2023,quarter one,90,10,29
81
+ 3/21/2023,quarter one,90,10,85
82
+ 3/22/2023,quarter one,90,10,53
83
+ 3/23/2023,quarter one,90,10,25
84
+ 3/24/2023,quarter one,90,10,36
85
+ 3/25/2023,quarter one,90,10,79
86
+ 3/26/2023,quarter one,90,10,100
87
+ 3/27/2023,quarter one,90,10,12
88
+ 3/28/2023,quarter one,90,10,71
89
+ 3/29/2023,quarter one,90,10,46
90
+ 3/30/2023,quarter one,90,10,32
91
+ 3/31/2023,quarter one,90,10,81
92
+ 4/1/2023,quarter two,80,20,70
93
+ 4/2/2023,quarter two,80,20,84
94
+ 4/3/2023,quarter two,80,20,97
95
+ 4/4/2023,quarter two,80,20,69
96
+ 4/5/2023,quarter two,80,20,76
97
+ 4/6/2023,quarter two,80,20,69
98
+ 4/7/2023,quarter two,80,20,9
99
+ 4/8/2023,quarter two,80,20,53
100
+ 4/9/2023,quarter two,80,20,63
101
+ 4/10/2023,quarter two,80,20,26
102
+ 4/11/2023,quarter two,80,20,9
103
+ 4/12/2023,quarter two,80,20,48
104
+ 4/13/2023,quarter two,80,20,36
105
+ 4/14/2023,quarter two,80,20,29
106
+ 4/15/2023,quarter two,80,20,66
107
+ 4/16/2023,quarter two,80,20,53
108
+ 4/17/2023,quarter two,80,20,10
109
+ 4/18/2023,quarter two,80,20,62
110
+ 4/19/2023,quarter two,80,20,84
111
+ 4/20/2023,quarter two,80,20,88
112
+ 4/21/2023,quarter two,80,20,27
113
+ 4/22/2023,quarter two,80,20,81
114
+ 4/23/2023,quarter two,80,20,16
115
+ 4/24/2023,quarter two,80,20,95
116
+ 4/25/2023,quarter two,80,20,80
117
+ 4/26/2023,quarter two,80,20,53
118
+ 4/27/2023,quarter two,80,20,65
119
+ 4/28/2023,quarter two,80,20,39
120
+ 4/29/2023,quarter two,80,20,1
121
+ 4/30/2023,quarter two,80,20,37
122
+ 5/1/2023,quarter two,80,20,70
123
+ 5/2/2023,quarter two,80,20,88
124
+ 5/3/2023,quarter two,80,20,75
125
+ 5/4/2023,quarter two,80,20,80
126
+ 5/5/2023,quarter two,80,20,45
127
+ 5/6/2023,quarter two,80,20,70
128
+ 5/7/2023,quarter two,80,20,8
129
+ 5/8/2023,quarter two,80,20,2
130
+ 5/9/2023,quarter two,80,20,41
131
+ 5/10/2023,quarter two,80,20,42
132
+ 5/11/2023,quarter two,80,20,88
133
+ 5/12/2023,quarter two,80,20,94
134
+ 5/13/2023,quarter two,80,20,31
135
+ 5/14/2023,quarter two,80,20,19
136
+ 5/15/2023,quarter two,80,20,62
137
+ 5/16/2023,quarter two,80,20,62
138
+ 5/17/2023,quarter two,80,20,33
139
+ 5/18/2023,quarter two,80,20,86
140
+ 5/19/2023,quarter two,80,20,36
141
+ 5/20/2023,quarter two,80,20,82
142
+ 5/21/2023,quarter two,80,20,52
143
+ 5/22/2023,quarter two,80,20,64
144
+ 5/23/2023,quarter two,80,20,82
145
+ 5/24/2023,quarter two,80,20,85
146
+ 5/25/2023,quarter two,80,20,87
147
+ 5/26/2023,quarter two,80,20,23
148
+ 5/27/2023,quarter two,80,20,61
149
+ 5/28/2023,quarter two,80,20,64
150
+ 5/29/2023,quarter two,80,20,14
151
+ 5/30/2023,quarter two,80,20,73
152
+ 5/31/2023,quarter two,80,20,92
153
+ 6/1/2023,quarter two,80,20,85
154
+ 6/2/2023,quarter two,80,20,75
155
+ 6/3/2023,quarter two,80,20,67
156
+ 6/4/2023,quarter two,80,20,39
157
+ 6/5/2023,quarter two,80,20,39
158
+ 6/6/2023,quarter two,80,20,92
159
+ 6/7/2023,quarter two,80,20,70
160
+ 6/8/2023,quarter two,80,20,48
161
+ 6/9/2023,quarter two,80,20,69
162
+ 6/10/2023,quarter two,80,20,74
163
+ 6/11/2023,quarter two,80,20,40
164
+ 6/12/2023,quarter two,80,20,34
165
+ 6/13/2023,quarter two,80,20,38
166
+ 6/14/2023,quarter two,80,20,14
167
+ 6/15/2023,quarter two,80,20,42
168
+ 6/16/2023,quarter two,80,20,16
169
+ 6/17/2023,quarter two,80,20,47
170
+ 6/18/2023,quarter two,80,20,43
171
+ 6/19/2023,quarter two,80,20,28
172
+ 6/20/2023,quarter two,80,20,88
173
+ 6/21/2023,quarter two,80,20,70
174
+ 6/22/2023,quarter two,80,20,63
175
+ 6/23/2023,quarter two,80,20,43
176
+ 6/24/2023,quarter two,80,20,47
177
+ 6/25/2023,quarter two,80,20,80
178
+ 6/26/2023,quarter two,80,20,6
179
+ 6/27/2023,quarter two,80,20,13
180
+ 6/28/2023,quarter two,80,20,39
181
+ 6/29/2023,quarter two,80,20,62
182
+ 6/30/2023,quarter two,80,20,26
183
+ 7/1/2023,quarter three,70,30,96
184
+ 7/2/2023,quarter three,70,30,0
185
+ 7/3/2023,quarter three,70,30,24
186
+ 7/4/2023,quarter three,70,30,4
187
+ 7/5/2023,quarter three,70,30,39
188
+ 7/6/2023,quarter three,70,30,1
189
+ 7/7/2023,quarter three,70,30,18
190
+ 7/8/2023,quarter three,70,30,38
191
+ 7/9/2023,quarter three,70,30,92
192
+ 7/10/2023,quarter three,70,30,11
193
+ 7/11/2023,quarter three,70,30,48
194
+ 7/12/2023,quarter three,70,30,62
195
+ 7/13/2023,quarter three,70,30,82
196
+ 7/14/2023,quarter three,70,30,55
197
+ 7/15/2023,quarter three,70,30,63
198
+ 7/16/2023,quarter three,70,30,26
199
+ 7/17/2023,quarter three,70,30,26
200
+ 7/18/2023,quarter three,70,30,22
201
+ 7/19/2023,quarter three,70,30,65
202
+ 7/20/2023,quarter three,70,30,1
203
+ 7/21/2023,quarter three,70,30,16
204
+ 7/22/2023,quarter three,70,30,20
205
+ 7/23/2023,quarter three,70,30,44
206
+ 7/24/2023,quarter three,70,30,38
207
+ 7/25/2023,quarter three,70,30,33
208
+ 7/26/2023,quarter three,70,30,9
209
+ 7/27/2023,quarter three,70,30,8
210
+ 7/28/2023,quarter three,70,30,70
211
+ 7/29/2023,quarter three,70,30,16
212
+ 7/30/2023,quarter three,70,30,26
213
+ 7/31/2023,quarter three,70,30,93
214
+ 8/1/2023,quarter three,70,30,5
215
+ 8/2/2023,quarter three,70,30,9
216
+ 8/3/2023,quarter three,70,30,66
217
+ 8/4/2023,quarter three,70,30,15
218
+ 8/5/2023,quarter three,70,30,3
219
+ 8/6/2023,quarter three,70,30,28
220
+ 8/7/2023,quarter three,70,30,93
221
+ 8/8/2023,quarter three,70,30,88
222
+ 8/9/2023,quarter three,70,30,87
223
+ 8/10/2023,quarter three,70,30,27
224
+ 8/11/2023,quarter three,70,30,51
225
+ 8/12/2023,quarter three,70,30,25
226
+ 8/13/2023,quarter three,70,30,6
227
+ 8/14/2023,quarter three,70,30,87
228
+ 8/15/2023,quarter three,70,30,83
229
+ 8/16/2023,quarter three,70,30,61
230
+ 8/17/2023,quarter three,70,30,93
231
+ 8/18/2023,quarter three,70,30,91
232
+ 8/19/2023,quarter three,70,30,87
233
+ 8/20/2023,quarter three,70,30,99
234
+ 8/21/2023,quarter three,70,30,27
235
+ 8/22/2023,quarter three,70,30,91
236
+ 8/23/2023,quarter three,70,30,100
237
+ 8/24/2023,quarter three,70,30,36
238
+ 8/25/2023,quarter three,70,30,73
239
+ 8/26/2023,quarter three,70,30,73
240
+ 8/27/2023,quarter three,70,30,80
241
+ 8/28/2023,quarter three,70,30,100
242
+ 8/29/2023,quarter three,70,30,84
243
+ 8/30/2023,quarter three,70,30,40
244
+ 8/31/2023,quarter three,70,30,30
245
+ 9/1/2023,quarter three,70,30,6
246
+ 9/2/2023,quarter three,70,30,26
247
+ 9/3/2023,quarter three,70,30,45
248
+ 9/4/2023,quarter three,70,30,1
249
+ 9/5/2023,quarter three,70,30,14
250
+ 9/6/2023,quarter three,70,30,44
251
+ 9/7/2023,quarter three,70,30,93
252
+ 9/8/2023,quarter three,70,30,63
253
+ 9/9/2023,quarter three,70,30,65
254
+ 9/10/2023,quarter three,70,30,79
255
+ 9/11/2023,quarter three,70,30,90
256
+ 9/12/2023,quarter three,70,30,23
257
+ 9/13/2023,quarter three,70,30,95
258
+ 9/14/2023,quarter three,70,30,64
259
+ 9/15/2023,quarter three,70,30,32
260
+ 9/16/2023,quarter three,70,30,39
261
+ 9/17/2023,quarter three,70,30,67
262
+ 9/18/2023,quarter three,70,30,9
263
+ 9/19/2023,quarter three,70,30,48
264
+ 9/20/2023,quarter three,70,30,49
265
+ 9/21/2023,quarter three,70,30,56
266
+ 9/22/2023,quarter three,70,30,59
267
+ 9/23/2023,quarter three,70,30,0
268
+ 9/24/2023,quarter three,70,30,94
269
+ 9/25/2023,quarter three,70,30,86
270
+ 9/26/2023,quarter three,70,30,37
271
+ 9/27/2023,quarter three,70,30,50
272
+ 9/28/2023,quarter three,70,30,31
273
+ 9/29/2023,quarter three,70,30,44
274
+ 9/30/2023,quarter three,70,30,48
275
+ 10/1/2023,quarter four,60,40,76
276
+ 10/2/2023,quarter four,60,40,14
277
+ 10/3/2023,quarter four,60,40,76
278
+ 10/4/2023,quarter four,60,40,12
279
+ 10/5/2023,quarter four,60,40,25
280
+ 10/6/2023,quarter four,60,40,86
281
+ 10/7/2023,quarter four,60,40,69
282
+ 10/8/2023,quarter four,60,40,86
283
+ 10/9/2023,quarter four,60,40,99
284
+ 10/10/2023,quarter four,60,40,24
285
+ 10/11/2023,quarter four,60,40,69
286
+ 10/12/2023,quarter four,60,40,42
287
+ 10/13/2023,quarter four,60,40,1
288
+ 10/14/2023,quarter four,60,40,72
289
+ 10/15/2023,quarter four,60,40,85
290
+ 10/16/2023,quarter four,60,40,2
291
+ 10/17/2023,quarter four,60,40,42
292
+ 10/18/2023,quarter four,60,40,55
293
+ 10/19/2023,quarter four,60,40,59
294
+ 10/20/2023,quarter four,60,40,71
295
+ 10/21/2023,quarter four,60,40,19
296
+ 10/22/2023,quarter four,60,40,43
297
+ 10/23/2023,quarter four,60,40,29
298
+ 10/24/2023,quarter four,60,40,78
299
+ 10/25/2023,quarter four,60,40,21
300
+ 10/26/2023,quarter four,60,40,76
301
+ 10/27/2023,quarter four,60,40,65
302
+ 10/28/2023,quarter four,60,40,88
303
+ 10/29/2023,quarter four,60,40,41
304
+ 10/30/2023,quarter four,60,40,31
305
+ 10/31/2023,quarter four,60,40,71
306
+ 11/1/2023,quarter four,60,40,59
307
+ 11/2/2023,quarter four,60,40,65
308
+ 11/3/2023,quarter four,60,40,91
309
+ 11/4/2023,quarter four,60,40,60
310
+ 11/5/2023,quarter four,60,40,22
311
+ 11/6/2023,quarter four,60,40,26
312
+ 11/7/2023,quarter four,60,40,10
313
+ 11/8/2023,quarter four,60,40,39
314
+ 11/9/2023,quarter four,60,40,67
315
+ 11/10/2023,quarter four,60,40,0
316
+ 11/11/2023,quarter four,60,40,19
317
+ 11/12/2023,quarter four,60,40,9
318
+ 11/13/2023,quarter four,60,40,70
319
+ 11/14/2023,quarter four,60,40,86
320
+ 11/15/2023,quarter four,60,40,40
321
+ 11/16/2023,quarter four,60,40,7
322
+ 11/17/2023,quarter four,60,40,57
323
+ 11/18/2023,quarter four,60,40,16
324
+ 11/19/2023,quarter four,60,40,24
325
+ 11/20/2023,quarter four,60,40,68
326
+ 11/21/2023,quarter four,60,40,36
327
+ 11/22/2023,quarter four,60,40,62
328
+ 11/23/2023,quarter four,60,40,96
329
+ 11/24/2023,quarter four,60,40,75
330
+ 11/25/2023,quarter four,60,40,55
331
+ 11/26/2023,quarter four,60,40,14
332
+ 11/27/2023,quarter four,60,40,60
333
+ 11/28/2023,quarter four,60,40,23
334
+ 11/29/2023,quarter four,60,40,8
335
+ 11/30/2023,quarter four,60,40,82
336
+ 12/1/2023,quarter four,60,40,27
337
+ 12/2/2023,quarter four,60,40,67
338
+ 12/3/2023,quarter four,60,40,47
339
+ 12/4/2023,quarter four,60,40,73
340
+ 12/5/2023,quarter four,60,40,33
341
+ 12/6/2023,quarter four,60,40,73
342
+ 12/7/2023,quarter four,60,40,85
343
+ 12/8/2023,quarter four,60,40,83
344
+ 12/9/2023,quarter four,60,40,14
345
+ 12/10/2023,quarter four,60,40,32
346
+ 12/11/2023,quarter four,60,40,13
347
+ 12/12/2023,quarter four,60,40,58
348
+ 12/13/2023,quarter four,60,40,21
349
+ 12/14/2023,quarter four,60,40,92
350
+ 12/15/2023,quarter four,60,40,28
351
+ 12/16/2023,quarter four,60,40,12
352
+ 12/17/2023,quarter four,60,40,3
353
+ 12/18/2023,quarter four,60,40,30
354
+ 12/19/2023,quarter four,60,40,39
355
+ 12/20/2023,quarter four,60,40,64
356
+ 12/21/2023,quarter four,60,40,84
357
+ 12/22/2023,quarter four,60,40,19
358
+ 12/23/2023,quarter four,60,40,11
359
+ 12/24/2023,quarter four,60,40,41
360
+ 12/25/2023,quarter four,60,40,39
361
+ 12/26/2023,quarter four,60,40,22
362
+ 12/27/2023,quarter four,60,40,32
363
+ 12/28/2023,quarter four,60,40,99
364
+ 12/29/2023,quarter four,60,40,56
365
+ 12/30/2023,quarter four,60,40,56
366
+ 12/31/2023,quarter four,60,40,76
@@ -21,8 +21,8 @@
21
21
  "dataKey": "Date",
22
22
  "label": "X-Axis Example Label",
23
23
  "type": "date",
24
- "dateParseFormat": "%d/%m/%Y",
25
- "dateDisplayFormat": "%d/%m/%Y"
24
+ "dateParseFormat": "%m/%d/%Y",
25
+ "dateDisplayFormat": "%m/%d/%Y"
26
26
  },
27
27
  "table": {
28
28
  "label": "Data Table",
@@ -68,7 +68,7 @@
68
68
  },
69
69
  {
70
70
  "Date": "4/15/2016",
71
- "Data 1": "120",
71
+ "Data 1": "",
72
72
  "Data 2": "160",
73
73
  "Data 3": "230",
74
74
  "Data 4": "180",