@cdc/chart 4.23.4 → 4.23.5
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/dist/cdcchart.js +52384 -50875
- package/examples/feature/__data__/planet-example-data.json +2 -19
- package/examples/feature/__data__/planet-logaritmic-data.json +56 -0
- package/examples/feature/area/area-chart-category.json +240 -0
- package/examples/feature/bar/example-bar-chart.json +544 -22
- package/examples/feature/bar/planet-chart-logaritmic-config.json +170 -0
- package/examples/feature/boxplot/valid-boxplot.csv +17 -0
- package/examples/feature/filters/filter-testing.json +37 -3
- package/examples/feature/forecasting/random_data.csv +366 -0
- package/examples/feature/line/line-chart.json +2 -2
- package/examples/feature/test-highlight/test-highlight-2.json +789 -0
- package/examples/feature/test-highlight/test-highlight-vertical.json +561 -0
- package/examples/feature/test-highlight/test-highlight.json +100 -0
- package/examples/feature/tests-non-numerics/stacked-vertical-bar-example-nonnumerics.json +1 -2
- package/examples/gallery/bar-chart-horizontal/horizontal-highlight.json +345 -0
- package/index.html +8 -8
- package/package.json +2 -2
- package/src/CdcChart.jsx +294 -14
- package/src/components/AreaChart.jsx +27 -20
- package/src/components/BarChart.jsx +85 -25
- package/src/components/DeviationBar.jsx +32 -32
- package/src/components/EditorPanel.jsx +1105 -184
- package/src/components/Legend.jsx +39 -3
- package/src/components/LineChart.jsx +1 -8
- package/src/components/LinearChart.jsx +121 -270
- package/src/data/initial-state.js +18 -3
- package/src/hooks/useHighlightedBars.js +154 -0
- package/src/hooks/useMinMax.js +92 -0
- package/src/hooks/useReduceData.js +31 -57
- package/src/hooks/useScales.js +202 -0
- /package/examples/feature/area/{area-chart.json → area-chart-date.json} +0 -0
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "chart",
|
|
3
|
+
"title": "Planet Radius (Combo Example)",
|
|
4
|
+
"showTitle": true,
|
|
5
|
+
"theme": "theme-blue",
|
|
6
|
+
"animate": false,
|
|
7
|
+
"fontSize": "small",
|
|
8
|
+
"lineDatapointStyle": "hover",
|
|
9
|
+
"barHasBorder": "true",
|
|
10
|
+
"isLollipopChart": false,
|
|
11
|
+
"lollipopShape": "circle",
|
|
12
|
+
"lollipopColorStyle": "two-tone",
|
|
13
|
+
"visualizationSubType": "regular",
|
|
14
|
+
"barStyle": "flat",
|
|
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": "123",
|
|
27
|
+
"gridLines": true,
|
|
28
|
+
"enablePadding": false,
|
|
29
|
+
"min": "",
|
|
30
|
+
"max": "",
|
|
31
|
+
"labelColor": "#333",
|
|
32
|
+
"tickLabelColor": "#333",
|
|
33
|
+
"tickColor": "#333",
|
|
34
|
+
"rightHideAxis": true,
|
|
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
|
+
"label": "Measurement (1000km)",
|
|
45
|
+
"labelPlacement": "On Date/Category Axis"
|
|
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
|
+
"total": "Total",
|
|
71
|
+
"outliers": "Outliers",
|
|
72
|
+
"values": "Values",
|
|
73
|
+
"lowerBounds": "Lower Bounds",
|
|
74
|
+
"upperBounds": "Upper Bounds"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"topAxis": {
|
|
78
|
+
"hasLine": false
|
|
79
|
+
},
|
|
80
|
+
"isLegendValue": false,
|
|
81
|
+
"barThickness": 0.35,
|
|
82
|
+
"barHeight": 25,
|
|
83
|
+
"barSpace": 15,
|
|
84
|
+
"heights": {
|
|
85
|
+
"vertical": 300,
|
|
86
|
+
"horizontal": 750
|
|
87
|
+
},
|
|
88
|
+
"xAxis": {
|
|
89
|
+
"type": "categorical",
|
|
90
|
+
"showTargetLabel": true,
|
|
91
|
+
"targetLabel": "Target",
|
|
92
|
+
"hideAxis": false,
|
|
93
|
+
"hideLabel": false,
|
|
94
|
+
"hideTicks": false,
|
|
95
|
+
"size": 75,
|
|
96
|
+
"tickRotation": 0,
|
|
97
|
+
"min": "",
|
|
98
|
+
"max": "",
|
|
99
|
+
"labelColor": "#333",
|
|
100
|
+
"tickLabelColor": "#333",
|
|
101
|
+
"tickColor": "#333",
|
|
102
|
+
"numTicks": "",
|
|
103
|
+
"labelOffset": 65,
|
|
104
|
+
"axisPadding": 0,
|
|
105
|
+
"target": 0,
|
|
106
|
+
"label": "Planet",
|
|
107
|
+
"dataKey": "name"
|
|
108
|
+
},
|
|
109
|
+
"table": {
|
|
110
|
+
"label": "Data Table",
|
|
111
|
+
"expanded": false,
|
|
112
|
+
"limitHeight": false,
|
|
113
|
+
"height": "",
|
|
114
|
+
"caption": "",
|
|
115
|
+
"showDownloadUrl": false,
|
|
116
|
+
"showDataTableLink": true,
|
|
117
|
+
"show": true
|
|
118
|
+
},
|
|
119
|
+
"orientation": "vertical",
|
|
120
|
+
"legend": {
|
|
121
|
+
"behavior": "isolate",
|
|
122
|
+
"singleRow": false,
|
|
123
|
+
"colorCode": "",
|
|
124
|
+
"reverseLabelOrder": false,
|
|
125
|
+
"description": "",
|
|
126
|
+
"dynamicLegend": false,
|
|
127
|
+
"dynamicLegendDefaultText": "Show All",
|
|
128
|
+
"dynamicLegendItemLimit": 5,
|
|
129
|
+
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
130
|
+
"dynamicLegendChartMessage": "Select Options from the Legend"
|
|
131
|
+
},
|
|
132
|
+
"exclusions": {
|
|
133
|
+
"active": false,
|
|
134
|
+
"keys": []
|
|
135
|
+
},
|
|
136
|
+
"palette": "qualitative3",
|
|
137
|
+
"isPaletteReversed": false,
|
|
138
|
+
"twoColor": {
|
|
139
|
+
"palette": "monochrome-1",
|
|
140
|
+
"isPaletteReversed": false
|
|
141
|
+
},
|
|
142
|
+
"labels": true,
|
|
143
|
+
"dataFormat": {
|
|
144
|
+
"commas": false,
|
|
145
|
+
"prefix": "",
|
|
146
|
+
"suffix": "",
|
|
147
|
+
"abbreviated": true,
|
|
148
|
+
"bottomSuffix": "",
|
|
149
|
+
"bottomPrefix": "",
|
|
150
|
+
"bottomAbbreviated": false,
|
|
151
|
+
"roundTo": 1
|
|
152
|
+
},
|
|
153
|
+
"confidenceKeys": {},
|
|
154
|
+
"visual": {
|
|
155
|
+
"border": true,
|
|
156
|
+
"accent": true,
|
|
157
|
+
"background": true
|
|
158
|
+
},
|
|
159
|
+
"useLogScale": true,
|
|
160
|
+
"filterBehavior": "Filter Change",
|
|
161
|
+
"highlightedBarValues": [],
|
|
162
|
+
"series": [
|
|
163
|
+
{
|
|
164
|
+
"dataKey": "Radius",
|
|
165
|
+
"type": "Line"
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"dataUrl": "/examples/feature/__data__/planet-logaritmic-data.json",
|
|
169
|
+
"visualizationType": "Bar"
|
|
170
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Group_Category,Value
|
|
2
|
+
category one,21
|
|
3
|
+
category one,19
|
|
4
|
+
category one,23
|
|
5
|
+
category one,24
|
|
6
|
+
category two,18
|
|
7
|
+
category two,10
|
|
8
|
+
category two,12
|
|
9
|
+
category two,19
|
|
10
|
+
category three,30
|
|
11
|
+
category three,35
|
|
12
|
+
category three,36
|
|
13
|
+
category three,40
|
|
14
|
+
category four,50
|
|
15
|
+
category four,54
|
|
16
|
+
category four,42
|
|
17
|
+
category four,159
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"type": "chart",
|
|
3
3
|
"title": "Planet Radius (Combo Example)",
|
|
4
4
|
"showTitle": true,
|
|
5
|
+
"showDownloadMediaButton": false,
|
|
5
6
|
"theme": "theme-blue",
|
|
6
7
|
"animate": true,
|
|
7
8
|
"fontSize": "medium",
|
|
@@ -14,6 +15,9 @@
|
|
|
14
15
|
"barStyle": "",
|
|
15
16
|
"roundingStyle": "standard",
|
|
16
17
|
"tipRounding": "top",
|
|
18
|
+
"general": {
|
|
19
|
+
"showDownloadButton": true
|
|
20
|
+
},
|
|
17
21
|
"padding": {
|
|
18
22
|
"left": 0,
|
|
19
23
|
"right": 0
|
|
@@ -41,6 +45,7 @@
|
|
|
41
45
|
"numTicks": "",
|
|
42
46
|
"axisPadding": 0,
|
|
43
47
|
"tickRotation": 0,
|
|
48
|
+
"anchors": [],
|
|
44
49
|
"label": "Measurement (1000km)"
|
|
45
50
|
},
|
|
46
51
|
"boxplot": {
|
|
@@ -83,6 +88,7 @@
|
|
|
83
88
|
"horizontal": 750
|
|
84
89
|
},
|
|
85
90
|
"xAxis": {
|
|
91
|
+
"anchors": [],
|
|
86
92
|
"type": "categorical",
|
|
87
93
|
"showTargetLabel": true,
|
|
88
94
|
"targetLabel": "Target",
|
|
@@ -111,9 +117,17 @@
|
|
|
111
117
|
"caption": "",
|
|
112
118
|
"showDownloadUrl": false,
|
|
113
119
|
"showDataTableLink": true,
|
|
120
|
+
"indexLabel": "",
|
|
121
|
+
"showVertical": false,
|
|
114
122
|
"show": true
|
|
115
123
|
},
|
|
116
124
|
"orientation": "vertical",
|
|
125
|
+
"color": "pinkpurple",
|
|
126
|
+
"columns": {
|
|
127
|
+
"additionalColumn1": {
|
|
128
|
+
"name": ""
|
|
129
|
+
}
|
|
130
|
+
},
|
|
117
131
|
"legend": {
|
|
118
132
|
"behavior": "isolate",
|
|
119
133
|
"singleRow": false,
|
|
@@ -155,10 +169,9 @@
|
|
|
155
169
|
"accent": true,
|
|
156
170
|
"background": true
|
|
157
171
|
},
|
|
172
|
+
"useLogScale": false,
|
|
158
173
|
"filterBehavior": "Apply Button",
|
|
159
|
-
"
|
|
160
|
-
"animateReplay": true,
|
|
161
|
-
"visualizationType": "Combo",
|
|
174
|
+
"highlightedBarValues": [],
|
|
162
175
|
"series": [
|
|
163
176
|
{
|
|
164
177
|
"dataKey": "Radius",
|
|
@@ -174,5 +187,26 @@
|
|
|
174
187
|
"type": "Bar",
|
|
175
188
|
"axis": "Left"
|
|
176
189
|
}
|
|
190
|
+
],
|
|
191
|
+
"dataUrl": "/examples/feature/__data__/planet-example-data.json",
|
|
192
|
+
"animateReplay": true,
|
|
193
|
+
"visualizationType": "Combo",
|
|
194
|
+
"filters": [
|
|
195
|
+
{
|
|
196
|
+
"values": [
|
|
197
|
+
"0.3",
|
|
198
|
+
"0.7",
|
|
199
|
+
"1",
|
|
200
|
+
"2",
|
|
201
|
+
"7",
|
|
202
|
+
"8",
|
|
203
|
+
"18",
|
|
204
|
+
"22"
|
|
205
|
+
],
|
|
206
|
+
"active": "0.3",
|
|
207
|
+
"filterStyle": "pill",
|
|
208
|
+
"order": "asc",
|
|
209
|
+
"columnName": "Diameter"
|
|
210
|
+
}
|
|
177
211
|
]
|
|
178
212
|
}
|
|
@@ -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/%
|
|
25
|
-
"dateDisplayFormat": "%d/%
|
|
24
|
+
"dateParseFormat": "%m/%d/%Y",
|
|
25
|
+
"dateDisplayFormat": "%m/%d/%Y"
|
|
26
26
|
},
|
|
27
27
|
"table": {
|
|
28
28
|
"label": "Data Table",
|