@cdc/chart 4.24.10 → 4.24.12-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.
- package/dist/cdcchart.js +35019 -34301
- package/examples/feature/boxplot/boxplot-data.json +88 -22
- package/examples/feature/boxplot/boxplot.json +540 -16
- package/examples/feature/boxplot/testing.csv +7 -7
- package/examples/feature/sankey/sankey-example-data.json +126 -14
- package/examples/feature/tests-date-exclusions/date-exclusions-config.json +372 -12
- package/examples/private/DEV-8850-2.json +493 -0
- package/examples/private/DEV-9822.json +574 -0
- package/examples/private/DEV-9840.json +553 -0
- package/examples/private/DEV-9850-3.json +461 -0
- package/examples/private/chart.json +1084 -0
- package/examples/private/ci_formatted.json +202 -0
- package/examples/private/ci_issue.json +3016 -0
- package/examples/private/completed.json +634 -0
- package/examples/private/dem-data-long.csv +20 -0
- package/examples/private/dem-data-long.json +36 -0
- package/examples/private/demographic_data.csv +157 -0
- package/examples/private/demographic_data.json +2654 -0
- package/examples/private/demographic_dynamic.json +443 -0
- package/examples/private/demographic_standard.json +560 -0
- package/examples/private/ehdi.json +29939 -0
- package/examples/private/test.json +493 -0
- package/index.html +10 -7
- package/package.json +2 -2
- package/src/CdcChart.tsx +132 -152
- package/src/_stories/Chart.Anchors.stories.tsx +31 -0
- package/src/_stories/Chart.CustomColors.stories.tsx +19 -0
- package/src/_stories/Chart.DynamicSeries.stories.tsx +34 -0
- package/src/_stories/Chart.Legend.Gradient.stories.tsx +42 -1
- package/src/_stories/Chart.stories.tsx +37 -6
- package/src/_stories/ChartAxisLabels.stories.tsx +4 -1
- package/src/_stories/ChartEditor.stories.tsx +27 -0
- package/src/_stories/ChartLine.Suppression.stories.tsx +25 -0
- package/src/_stories/ChartPrefixSuffix.stories.tsx +8 -0
- package/{examples/feature/area/area-chart-date-city-temperature.json → src/_stories/_mock/area_chart_stacked.json} +125 -27
- package/src/_stories/_mock/boxplot_multiseries.json +647 -0
- package/src/_stories/_mock/dynamic_series_bar_config.json +723 -0
- package/src/_stories/_mock/dynamic_series_config.json +979 -0
- package/src/_stories/_mock/line_chart_dynamic_ci.json +493 -0
- package/src/_stories/_mock/line_chart_non_dynamic_ci.json +522 -0
- package/{examples/feature/scatterplot/scatterplot.json → src/_stories/_mock/scatterplot_mock.json} +62 -92
- package/src/_stories/_mock/short_dates.json +288 -0
- package/src/_stories/_mock/suppression_mock.json +1549 -0
- package/src/components/AreaChart/components/AreaChart.Stacked.jsx +15 -3
- package/src/components/Axis/Categorical.Axis.tsx +2 -2
- package/src/components/BarChart/components/BarChart.Horizontal.tsx +46 -37
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +43 -9
- package/src/components/BarChart/components/BarChart.Vertical.tsx +53 -47
- package/src/components/BarChart/helpers/getBarData.ts +28 -0
- package/src/components/BarChart/helpers/index.ts +1 -2
- package/src/components/BarChart/helpers/tests/getBarData.test.ts +74 -0
- package/src/components/BoxPlot/BoxPlot.tsx +131 -0
- package/src/components/BoxPlot/helpers/index.ts +54 -0
- package/src/components/BrushChart.tsx +23 -26
- package/src/components/EditorPanel/EditorPanel.tsx +117 -139
- package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +3 -3
- package/src/components/EditorPanel/components/Panels/Panel.BoxPlot.tsx +51 -6
- package/src/components/EditorPanel/components/Panels/Panel.Regions.tsx +40 -9
- package/src/components/EditorPanel/components/Panels/Panel.Sankey.tsx +3 -3
- package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +122 -56
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +1 -2
- package/src/components/EditorPanel/useEditorPermissions.ts +20 -2
- package/src/components/Legend/Legend.Component.tsx +11 -12
- package/src/components/Legend/Legend.tsx +16 -16
- package/src/components/Legend/helpers/getLegendClasses.ts +59 -0
- package/src/components/Legend/helpers/index.ts +2 -1
- package/src/components/Legend/tests/getLegendClasses.test.ts +115 -0
- package/src/components/LineChart/components/LineChart.Circle.tsx +1 -1
- package/src/components/LineChart/helpers.ts +49 -43
- package/src/components/LineChart/index.tsx +135 -83
- package/src/components/LinearChart.tsx +196 -181
- package/src/components/PieChart/PieChart.tsx +7 -1
- package/src/components/Sankey/components/ColumnList.tsx +19 -0
- package/src/components/Sankey/components/Sankey.tsx +479 -0
- package/src/components/Sankey/helpers/getSankeyTooltip.tsx +33 -0
- package/src/components/Sankey/index.tsx +1 -492
- package/src/components/Sankey/sankey.scss +22 -21
- package/src/components/Sankey/types/index.ts +1 -1
- package/src/components/Sankey/useSankeyAlert.tsx +60 -0
- package/src/components/ScatterPlot/ScatterPlot.jsx +20 -4
- package/src/data/initial-state.js +7 -12
- package/src/helpers/countNumOfTicks.ts +57 -0
- package/src/helpers/getQuartiles.ts +15 -18
- package/src/hooks/useMinMax.ts +44 -16
- package/src/hooks/useReduceData.ts +43 -10
- package/src/hooks/useScales.ts +90 -35
- package/src/hooks/useTooltip.tsx +59 -50
- package/src/scss/DataTable.scss +5 -0
- package/src/scss/main.scss +6 -20
- package/src/types/ChartConfig.ts +6 -19
- package/src/types/ChartContext.ts +4 -1
- package/src/types/ForestPlot.ts +8 -0
- package/src/components/BoxPlot/BoxPlot.jsx +0 -111
- package/src/hooks/useLegendClasses.ts +0 -72
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"annotations": [],
|
|
2
3
|
"type": "chart",
|
|
3
4
|
"debugSvg": false,
|
|
4
5
|
"chartMessage": {
|
|
@@ -6,7 +7,6 @@
|
|
|
6
7
|
},
|
|
7
8
|
"title": "",
|
|
8
9
|
"showTitle": true,
|
|
9
|
-
"enableTooltips": true,
|
|
10
10
|
"showDownloadMediaButton": false,
|
|
11
11
|
"theme": "theme-blue",
|
|
12
12
|
"animate": false,
|
|
@@ -15,19 +15,25 @@
|
|
|
15
15
|
"lineDatapointColor": "Same as Line",
|
|
16
16
|
"barHasBorder": "false",
|
|
17
17
|
"isLollipopChart": false,
|
|
18
|
+
"lollipopShape": "circle",
|
|
19
|
+
"lollipopColorStyle": "two-tone",
|
|
18
20
|
"visualizationSubType": "regular",
|
|
19
21
|
"barStyle": "",
|
|
20
22
|
"roundingStyle": "standard",
|
|
21
23
|
"tipRounding": "top",
|
|
22
24
|
"isResponsiveTicks": false,
|
|
23
25
|
"general": {
|
|
24
|
-
"
|
|
26
|
+
"annotationDropdownText": "Annotations",
|
|
27
|
+
"showDownloadButton": false,
|
|
28
|
+
"showMissingDataLabel": true,
|
|
29
|
+
"showSuppressedSymbol": true,
|
|
30
|
+
"showZeroValueData": true,
|
|
31
|
+
"hideNullValue": true
|
|
25
32
|
},
|
|
26
33
|
"padding": {
|
|
27
34
|
"left": 5,
|
|
28
35
|
"right": 5
|
|
29
36
|
},
|
|
30
|
-
"suppressedData": [],
|
|
31
37
|
"preliminaryData": [],
|
|
32
38
|
"yAxis": {
|
|
33
39
|
"hideAxis": false,
|
|
@@ -51,15 +57,45 @@
|
|
|
51
57
|
"rightAxisTickColor": "#333",
|
|
52
58
|
"numTicks": "",
|
|
53
59
|
"axisPadding": 0,
|
|
60
|
+
"scalePadding": 10,
|
|
54
61
|
"tickRotation": 0,
|
|
55
|
-
"anchors": []
|
|
62
|
+
"anchors": [],
|
|
63
|
+
"shoMissingDataLabel": true,
|
|
64
|
+
"showMissingDataLine": true,
|
|
65
|
+
"categories": []
|
|
66
|
+
},
|
|
67
|
+
"boxplot": {
|
|
68
|
+
"plots": [],
|
|
69
|
+
"borders": "true",
|
|
70
|
+
"plotOutlierValues": false,
|
|
71
|
+
"plotNonOutlierValues": true,
|
|
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
|
+
"count": "Count",
|
|
84
|
+
"outliers": "Outliers",
|
|
85
|
+
"values": "Values",
|
|
86
|
+
"lowerBounds": "Lower Bounds",
|
|
87
|
+
"upperBounds": "Upper Bounds"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"topAxis": {
|
|
91
|
+
"hasLine": false
|
|
56
92
|
},
|
|
57
93
|
"isLegendValue": false,
|
|
58
94
|
"barThickness": 0.35,
|
|
59
95
|
"barHeight": 25,
|
|
60
96
|
"barSpace": 15,
|
|
61
97
|
"heights": {
|
|
62
|
-
"vertical":
|
|
98
|
+
"vertical": "647",
|
|
63
99
|
"horizontal": 750
|
|
64
100
|
},
|
|
65
101
|
"xAxis": {
|
|
@@ -79,10 +115,13 @@
|
|
|
79
115
|
"tickLabelColor": "#333",
|
|
80
116
|
"tickColor": "#333",
|
|
81
117
|
"numTicks": "",
|
|
82
|
-
"labelOffset":
|
|
118
|
+
"labelOffset": 0,
|
|
83
119
|
"axisPadding": 0,
|
|
84
120
|
"target": 0,
|
|
85
|
-
"maxTickRotation": 0
|
|
121
|
+
"maxTickRotation": 0,
|
|
122
|
+
"padding": 5,
|
|
123
|
+
"showYearsOnce": false,
|
|
124
|
+
"sortByRecentDate": false
|
|
86
125
|
},
|
|
87
126
|
"table": {
|
|
88
127
|
"label": "Data Table",
|
|
@@ -92,9 +131,13 @@
|
|
|
92
131
|
"caption": "",
|
|
93
132
|
"showDownloadUrl": false,
|
|
94
133
|
"showDataTableLink": true,
|
|
134
|
+
"showDownloadLinkBelow": true,
|
|
95
135
|
"indexLabel": "",
|
|
96
|
-
"download":
|
|
136
|
+
"download": true,
|
|
97
137
|
"showVertical": true,
|
|
138
|
+
"dateDisplayFormat": "",
|
|
139
|
+
"showMissingDataLabel": true,
|
|
140
|
+
"showSuppressedSymbol": true,
|
|
98
141
|
"show": true,
|
|
99
142
|
"customTableConfig": true
|
|
100
143
|
},
|
|
@@ -104,6 +147,7 @@
|
|
|
104
147
|
"legend": {
|
|
105
148
|
"hide": false,
|
|
106
149
|
"behavior": "isolate",
|
|
150
|
+
"axisAlign": true,
|
|
107
151
|
"singleRow": true,
|
|
108
152
|
"colorCode": "",
|
|
109
153
|
"reverseLabelOrder": false,
|
|
@@ -113,14 +157,25 @@
|
|
|
113
157
|
"dynamicLegendItemLimit": 5,
|
|
114
158
|
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
115
159
|
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
160
|
+
"label": "",
|
|
116
161
|
"lineMode": false,
|
|
117
162
|
"verticalSorted": false,
|
|
118
|
-
"highlightOnHover": false
|
|
163
|
+
"highlightOnHover": false,
|
|
164
|
+
"hideSuppressedLabels": false,
|
|
165
|
+
"hideSuppressionLink": false,
|
|
166
|
+
"seriesHighlight": [],
|
|
167
|
+
"style": "circles",
|
|
168
|
+
"subStyle": "linear blocks",
|
|
169
|
+
"tickRotation": "",
|
|
170
|
+
"hideBorder": {
|
|
171
|
+
"side": false,
|
|
172
|
+
"topBottom": true
|
|
173
|
+
}
|
|
119
174
|
},
|
|
120
175
|
"brush": {
|
|
121
176
|
"height": 25,
|
|
122
|
-
"
|
|
123
|
-
"
|
|
177
|
+
"active": false,
|
|
178
|
+
"data": []
|
|
124
179
|
},
|
|
125
180
|
"exclusions": {
|
|
126
181
|
"active": false,
|
|
@@ -156,7 +211,52 @@
|
|
|
156
211
|
"series": [],
|
|
157
212
|
"tooltips": {
|
|
158
213
|
"opacity": 90,
|
|
159
|
-
"singleSeries": false
|
|
214
|
+
"singleSeries": false,
|
|
215
|
+
"dateDisplayFormat": ""
|
|
216
|
+
},
|
|
217
|
+
"forestPlot": {
|
|
218
|
+
"startAt": 0,
|
|
219
|
+
"colors": {
|
|
220
|
+
"line": "",
|
|
221
|
+
"shape": ""
|
|
222
|
+
},
|
|
223
|
+
"lineOfNoEffect": {
|
|
224
|
+
"show": true
|
|
225
|
+
},
|
|
226
|
+
"type": "",
|
|
227
|
+
"pooledResult": {
|
|
228
|
+
"diamondHeight": 5,
|
|
229
|
+
"column": ""
|
|
230
|
+
},
|
|
231
|
+
"estimateField": "",
|
|
232
|
+
"estimateRadius": "",
|
|
233
|
+
"shape": "square",
|
|
234
|
+
"rowHeight": 20,
|
|
235
|
+
"description": {
|
|
236
|
+
"show": true,
|
|
237
|
+
"text": "description",
|
|
238
|
+
"location": 0
|
|
239
|
+
},
|
|
240
|
+
"result": {
|
|
241
|
+
"show": true,
|
|
242
|
+
"text": "result",
|
|
243
|
+
"location": 100
|
|
244
|
+
},
|
|
245
|
+
"radius": {
|
|
246
|
+
"min": 2,
|
|
247
|
+
"max": 10,
|
|
248
|
+
"scalingColumn": ""
|
|
249
|
+
},
|
|
250
|
+
"regression": {
|
|
251
|
+
"lower": 0,
|
|
252
|
+
"upper": 0,
|
|
253
|
+
"estimateField": 0
|
|
254
|
+
},
|
|
255
|
+
"leftWidthOffset": 0,
|
|
256
|
+
"rightWidthOffset": 0,
|
|
257
|
+
"showZeroLine": false,
|
|
258
|
+
"leftLabel": "",
|
|
259
|
+
"rightLabel": ""
|
|
160
260
|
},
|
|
161
261
|
"area": {
|
|
162
262
|
"isStacked": false
|
|
@@ -180,12 +280,22 @@
|
|
|
180
280
|
"nodeHeight": 40
|
|
181
281
|
},
|
|
182
282
|
"nodePadding": 55,
|
|
283
|
+
"nodeFontColor": "black",
|
|
284
|
+
"nodeColor": {
|
|
285
|
+
"default": "#ff8500",
|
|
286
|
+
"inactive": "#808080"
|
|
287
|
+
},
|
|
288
|
+
"linkColor": {
|
|
289
|
+
"default": "#ffc900",
|
|
290
|
+
"inactive": "#D3D3D3"
|
|
291
|
+
},
|
|
183
292
|
"opacity": {
|
|
184
293
|
"nodeOpacityDefault": 1,
|
|
185
294
|
"nodeOpacityInactive": 0.1,
|
|
186
295
|
"LinkOpacityDefault": 1,
|
|
187
296
|
"LinkOpacityInactive": 0.1
|
|
188
297
|
},
|
|
298
|
+
"storyNodeFontColor": "#006778",
|
|
189
299
|
"storyNodeText": [],
|
|
190
300
|
"nodeValueStyle": {
|
|
191
301
|
"textBefore": "(",
|
|
@@ -193,6 +303,8 @@
|
|
|
193
303
|
},
|
|
194
304
|
"data": []
|
|
195
305
|
},
|
|
306
|
+
"enableTooltips": true,
|
|
307
|
+
"suppressedData": [],
|
|
196
308
|
"datasets": {},
|
|
197
309
|
"visualizationType": "Sankey",
|
|
198
310
|
"data": [
|
|
@@ -1359,6 +1471,6 @@
|
|
|
1359
1471
|
"series": false
|
|
1360
1472
|
},
|
|
1361
1473
|
"validated": 4.23,
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1474
|
+
"footnotes": "**Counts fewer than 20 are suppressed for confidentiality reasons.",
|
|
1475
|
+
"version": "4.24.10"
|
|
1364
1476
|
}
|
|
@@ -1,45 +1,331 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"dataUrl": "/examples/feature/tests-date-exclusions/date-exclusions-data.json",
|
|
2
|
+
"annotations": [],
|
|
4
3
|
"type": "chart",
|
|
4
|
+
"debugSvg": false,
|
|
5
|
+
"chartMessage": {
|
|
6
|
+
"noData": "No Data Available"
|
|
7
|
+
},
|
|
8
|
+
"title": "",
|
|
9
|
+
"showTitle": true,
|
|
10
|
+
"showDownloadMediaButton": false,
|
|
5
11
|
"theme": "theme-blue",
|
|
12
|
+
"animate": false,
|
|
6
13
|
"fontSize": "medium",
|
|
7
14
|
"lineDatapointStyle": "hover",
|
|
15
|
+
"lineDatapointColor": "Same as Line",
|
|
8
16
|
"barHasBorder": "false",
|
|
17
|
+
"isLollipopChart": false,
|
|
18
|
+
"lollipopShape": "circle",
|
|
19
|
+
"lollipopColorStyle": "two-tone",
|
|
20
|
+
"visualizationSubType": "regular",
|
|
21
|
+
"barStyle": "",
|
|
22
|
+
"roundingStyle": "standard",
|
|
23
|
+
"tipRounding": "top",
|
|
24
|
+
"isResponsiveTicks": false,
|
|
25
|
+
"general": {
|
|
26
|
+
"annotationDropdownText": "Annotations",
|
|
27
|
+
"showDownloadButton": false,
|
|
28
|
+
"showMissingDataLabel": true,
|
|
29
|
+
"showSuppressedSymbol": true,
|
|
30
|
+
"showZeroValueData": true,
|
|
31
|
+
"hideNullValue": true
|
|
32
|
+
},
|
|
9
33
|
"padding": {
|
|
10
34
|
"left": 5,
|
|
11
35
|
"right": 5
|
|
12
36
|
},
|
|
37
|
+
"preliminaryData": [],
|
|
13
38
|
"yAxis": {
|
|
39
|
+
"hideAxis": false,
|
|
40
|
+
"displayNumbersOnBar": false,
|
|
41
|
+
"hideLabel": false,
|
|
42
|
+
"hideTicks": false,
|
|
14
43
|
"size": 50,
|
|
15
|
-
"gridLines": false
|
|
44
|
+
"gridLines": false,
|
|
45
|
+
"enablePadding": false,
|
|
46
|
+
"min": "",
|
|
47
|
+
"max": "",
|
|
48
|
+
"labelColor": "#333",
|
|
49
|
+
"tickLabelColor": "#333",
|
|
50
|
+
"tickColor": "#333",
|
|
51
|
+
"rightHideAxis": true,
|
|
52
|
+
"rightAxisSize": 0,
|
|
53
|
+
"rightLabel": "",
|
|
54
|
+
"rightLabelOffsetSize": 0,
|
|
55
|
+
"rightAxisLabelColor": "#333",
|
|
56
|
+
"rightAxisTickLabelColor": "#333",
|
|
57
|
+
"rightAxisTickColor": "#333",
|
|
58
|
+
"numTicks": "",
|
|
59
|
+
"axisPadding": 0,
|
|
60
|
+
"scalePadding": 10,
|
|
61
|
+
"tickRotation": 0,
|
|
62
|
+
"shoMissingDataLabel": true,
|
|
63
|
+
"showMissingDataLine": true,
|
|
64
|
+
"categories": []
|
|
65
|
+
},
|
|
66
|
+
"boxplot": {
|
|
67
|
+
"plots": [],
|
|
68
|
+
"borders": "true",
|
|
69
|
+
"plotOutlierValues": false,
|
|
70
|
+
"plotNonOutlierValues": true,
|
|
71
|
+
"labels": {
|
|
72
|
+
"q1": "Lower Quartile",
|
|
73
|
+
"q2": "q2",
|
|
74
|
+
"q3": "Upper Quartile",
|
|
75
|
+
"q4": "q4",
|
|
76
|
+
"minimum": "Minimum",
|
|
77
|
+
"maximum": "Maximum",
|
|
78
|
+
"mean": "Mean",
|
|
79
|
+
"median": "Median",
|
|
80
|
+
"sd": "Standard Deviation",
|
|
81
|
+
"iqr": "Interquartile Range",
|
|
82
|
+
"count": "Count",
|
|
83
|
+
"outliers": "Outliers",
|
|
84
|
+
"values": "Values",
|
|
85
|
+
"lowerBounds": "Lower Bounds",
|
|
86
|
+
"upperBounds": "Upper Bounds"
|
|
87
|
+
}
|
|
16
88
|
},
|
|
89
|
+
"topAxis": {
|
|
90
|
+
"hasLine": false
|
|
91
|
+
},
|
|
92
|
+
"isLegendValue": false,
|
|
17
93
|
"barThickness": 0.35,
|
|
18
|
-
"
|
|
94
|
+
"barHeight": 25,
|
|
95
|
+
"barSpace": 15,
|
|
96
|
+
"heights": {
|
|
97
|
+
"vertical": 300,
|
|
98
|
+
"horizontal": 750
|
|
99
|
+
},
|
|
19
100
|
"xAxis": {
|
|
20
|
-
"
|
|
101
|
+
"sortDates": false,
|
|
102
|
+
"anchors": [
|
|
103
|
+
{
|
|
104
|
+
"value": "05-01-2021",
|
|
105
|
+
"color": "red",
|
|
106
|
+
"lineStyle": "Dashed Medium"
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"type": "categorical",
|
|
110
|
+
"showTargetLabel": true,
|
|
111
|
+
"targetLabel": "Target",
|
|
112
|
+
"hideAxis": false,
|
|
113
|
+
"hideLabel": false,
|
|
114
|
+
"hideTicks": false,
|
|
21
115
|
"size": 75,
|
|
22
116
|
"tickRotation": 0,
|
|
117
|
+
"min": "",
|
|
118
|
+
"max": "",
|
|
119
|
+
"labelColor": "#333",
|
|
120
|
+
"tickLabelColor": "#333",
|
|
121
|
+
"tickColor": "#333",
|
|
23
122
|
"numTicks": "",
|
|
123
|
+
"labelOffset": 0,
|
|
124
|
+
"axisPadding": 200,
|
|
125
|
+
"target": 0,
|
|
126
|
+
"maxTickRotation": 0,
|
|
127
|
+
"padding": 5,
|
|
128
|
+
"showYearsOnce": false,
|
|
129
|
+
"sortByRecentDate": false,
|
|
24
130
|
"dataKey": "Date",
|
|
25
131
|
"dateParseFormat": "%m-%d-%Y",
|
|
26
|
-
"dateDisplayFormat": "%m-%d-%Y"
|
|
132
|
+
"dateDisplayFormat": "%m-%d-%Y",
|
|
133
|
+
"axisBBox": 26.40333366394043,
|
|
134
|
+
"tickWidthMax": 93
|
|
27
135
|
},
|
|
28
136
|
"table": {
|
|
29
137
|
"label": "Data Table",
|
|
30
138
|
"expanded": true,
|
|
139
|
+
"limitHeight": false,
|
|
140
|
+
"height": "",
|
|
141
|
+
"caption": "",
|
|
142
|
+
"showDownloadUrl": false,
|
|
143
|
+
"showDataTableLink": true,
|
|
144
|
+
"showDownloadLinkBelow": true,
|
|
145
|
+
"indexLabel": "",
|
|
146
|
+
"download": true,
|
|
147
|
+
"showVertical": false,
|
|
148
|
+
"dateDisplayFormat": "",
|
|
149
|
+
"showMissingDataLabel": true,
|
|
150
|
+
"showSuppressedSymbol": true,
|
|
31
151
|
"show": true
|
|
32
152
|
},
|
|
153
|
+
"orientation": "vertical",
|
|
154
|
+
"color": "pinkpurple",
|
|
155
|
+
"columns": {},
|
|
33
156
|
"legend": {
|
|
157
|
+
"hide": false,
|
|
34
158
|
"behavior": "isolate",
|
|
159
|
+
"axisAlign": true,
|
|
160
|
+
"singleRow": true,
|
|
161
|
+
"colorCode": "",
|
|
162
|
+
"reverseLabelOrder": false,
|
|
163
|
+
"description": "",
|
|
164
|
+
"dynamicLegend": false,
|
|
165
|
+
"dynamicLegendDefaultText": "Show All",
|
|
166
|
+
"dynamicLegendItemLimit": 5,
|
|
167
|
+
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
168
|
+
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
169
|
+
"label": "",
|
|
170
|
+
"lineMode": false,
|
|
171
|
+
"verticalSorted": false,
|
|
172
|
+
"highlightOnHover": false,
|
|
173
|
+
"hideSuppressedLabels": false,
|
|
174
|
+
"hideSuppressionLink": false,
|
|
175
|
+
"seriesHighlight": [],
|
|
176
|
+
"style": "circles",
|
|
177
|
+
"subStyle": "linear blocks",
|
|
178
|
+
"tickRotation": "",
|
|
179
|
+
"hideBorder": {
|
|
180
|
+
"side": false,
|
|
181
|
+
"topBottom": true
|
|
182
|
+
},
|
|
35
183
|
"position": "right"
|
|
36
184
|
},
|
|
185
|
+
"brush": {
|
|
186
|
+
"height": 45,
|
|
187
|
+
"active": false
|
|
188
|
+
},
|
|
37
189
|
"exclusions": {
|
|
38
190
|
"active": false,
|
|
39
191
|
"keys": []
|
|
40
192
|
},
|
|
41
193
|
"palette": "qualitative-bold",
|
|
194
|
+
"isPaletteReversed": false,
|
|
195
|
+
"twoColor": {
|
|
196
|
+
"palette": "monochrome-1",
|
|
197
|
+
"isPaletteReversed": false
|
|
198
|
+
},
|
|
42
199
|
"labels": false,
|
|
200
|
+
"dataFormat": {
|
|
201
|
+
"commas": false,
|
|
202
|
+
"prefix": "",
|
|
203
|
+
"suffix": "",
|
|
204
|
+
"abbreviated": false,
|
|
205
|
+
"bottomSuffix": "",
|
|
206
|
+
"bottomPrefix": "",
|
|
207
|
+
"bottomAbbreviated": false
|
|
208
|
+
},
|
|
209
|
+
"confidenceKeys": {},
|
|
210
|
+
"visual": {
|
|
211
|
+
"border": true,
|
|
212
|
+
"accent": true,
|
|
213
|
+
"background": true,
|
|
214
|
+
"verticalHoverLine": false,
|
|
215
|
+
"horizontalHoverLine": false
|
|
216
|
+
},
|
|
217
|
+
"useLogScale": false,
|
|
218
|
+
"filterBehavior": "Filter Change",
|
|
219
|
+
"highlightedBarValues": [],
|
|
220
|
+
"series": [
|
|
221
|
+
{
|
|
222
|
+
"dataKey": "Male",
|
|
223
|
+
"type": "Bar",
|
|
224
|
+
"tooltip": true,
|
|
225
|
+
"axis": "Left"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"dataKey": "Female",
|
|
229
|
+
"type": "Bar",
|
|
230
|
+
"tooltip": true,
|
|
231
|
+
"axis": "Left"
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
"tooltips": {
|
|
235
|
+
"opacity": 90,
|
|
236
|
+
"singleSeries": false,
|
|
237
|
+
"dateDisplayFormat": ""
|
|
238
|
+
},
|
|
239
|
+
"forestPlot": {
|
|
240
|
+
"startAt": 0,
|
|
241
|
+
"colors": {
|
|
242
|
+
"line": "",
|
|
243
|
+
"shape": ""
|
|
244
|
+
},
|
|
245
|
+
"lineOfNoEffect": {
|
|
246
|
+
"show": true
|
|
247
|
+
},
|
|
248
|
+
"type": "",
|
|
249
|
+
"pooledResult": {
|
|
250
|
+
"diamondHeight": 5,
|
|
251
|
+
"column": ""
|
|
252
|
+
},
|
|
253
|
+
"estimateField": "",
|
|
254
|
+
"estimateRadius": "",
|
|
255
|
+
"shape": "square",
|
|
256
|
+
"rowHeight": 20,
|
|
257
|
+
"description": {
|
|
258
|
+
"show": true,
|
|
259
|
+
"text": "description",
|
|
260
|
+
"location": 0
|
|
261
|
+
},
|
|
262
|
+
"result": {
|
|
263
|
+
"show": true,
|
|
264
|
+
"text": "result",
|
|
265
|
+
"location": 100
|
|
266
|
+
},
|
|
267
|
+
"radius": {
|
|
268
|
+
"min": 2,
|
|
269
|
+
"max": 10,
|
|
270
|
+
"scalingColumn": ""
|
|
271
|
+
},
|
|
272
|
+
"regression": {
|
|
273
|
+
"lower": 0,
|
|
274
|
+
"upper": 0,
|
|
275
|
+
"estimateField": 0
|
|
276
|
+
},
|
|
277
|
+
"leftWidthOffset": 0,
|
|
278
|
+
"rightWidthOffset": 0,
|
|
279
|
+
"showZeroLine": false,
|
|
280
|
+
"leftLabel": "",
|
|
281
|
+
"rightLabel": ""
|
|
282
|
+
},
|
|
283
|
+
"area": {
|
|
284
|
+
"isStacked": false
|
|
285
|
+
},
|
|
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
|
+
"storyNodeFontColor": "#006778",
|
|
321
|
+
"storyNodeText": [],
|
|
322
|
+
"nodeValueStyle": {
|
|
323
|
+
"textBefore": "(",
|
|
324
|
+
"textAfter": ")"
|
|
325
|
+
},
|
|
326
|
+
"data": []
|
|
327
|
+
},
|
|
328
|
+
"height": 300,
|
|
43
329
|
"dataDescription": {
|
|
44
330
|
"horizontal": false,
|
|
45
331
|
"series": true,
|
|
@@ -49,14 +335,88 @@
|
|
|
49
335
|
"valueKey": "Cases per 100K"
|
|
50
336
|
},
|
|
51
337
|
"visualizationType": "Line",
|
|
52
|
-
"
|
|
338
|
+
"data": [
|
|
53
339
|
{
|
|
54
|
-
"
|
|
55
|
-
"
|
|
340
|
+
"Date": "01-01-2021",
|
|
341
|
+
"Male": "6714",
|
|
342
|
+
"Female": "5714"
|
|
56
343
|
},
|
|
57
344
|
{
|
|
58
|
-
"
|
|
59
|
-
"
|
|
345
|
+
"Date": "02-01-2021",
|
|
346
|
+
"Male": "7260",
|
|
347
|
+
"Female": "6000"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"Date": "03-01-2021",
|
|
351
|
+
"Male": "6808",
|
|
352
|
+
"Female": "5808"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"Date": "04-01-2021",
|
|
356
|
+
"Male": "6225",
|
|
357
|
+
"Female": "6225"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"Date": "05-01-2021",
|
|
361
|
+
"Male": "6633",
|
|
362
|
+
"Female": "5633"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"Date": "06-01-2021",
|
|
366
|
+
"Male": "10600",
|
|
367
|
+
"Female": "8600"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"Date": "07-01-2021",
|
|
371
|
+
"Male": "11300",
|
|
372
|
+
"Female": "9300"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"Date": "08-01-2021",
|
|
376
|
+
"Male": "12450",
|
|
377
|
+
"Female": "9450"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"Date": "09-01-2021",
|
|
381
|
+
"Male": "14625",
|
|
382
|
+
"Female": "3625"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"Date": "10-01-2021",
|
|
386
|
+
"Male": "18238",
|
|
387
|
+
"Female": "3238"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"Date": "11-01-2021",
|
|
391
|
+
"Male": "18214",
|
|
392
|
+
"Female": "2214"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"Date": "12-01-2021",
|
|
396
|
+
"Male": "16411",
|
|
397
|
+
"Female": "2411"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"Date": "01-01-2022",
|
|
401
|
+
"Male": "15808",
|
|
402
|
+
"Female": "2808"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"Date": "02-01-2022",
|
|
406
|
+
"Male": "11210",
|
|
407
|
+
"Female": "3210"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"Date": "03-01-2022",
|
|
411
|
+
"Male": "9660",
|
|
412
|
+
"Female": "2660"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"Date": "04-01-2022",
|
|
416
|
+
"Male": "7325",
|
|
417
|
+
"Female": "2325"
|
|
60
418
|
}
|
|
61
|
-
]
|
|
419
|
+
],
|
|
420
|
+
"version": "4.24.10",
|
|
421
|
+
"dynamicMarginTop": 0
|
|
62
422
|
}
|