@cdc/chart 4.25.11 → 4.26.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/CLAUDE.local.md +79 -0
- package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
- package/dist/cdcchart.js +51401 -50814
- package/examples/default.json +378 -0
- package/examples/feature/__data__/horizon-chart-data.json +373 -0
- package/examples/feature/annotations/index.json +3 -6
- package/examples/feature/horizon/horizon-chart.json +395 -0
- package/examples/feature/pie/planet-pie-example-config.json +48 -2
- package/examples/line-chart-states.json +1085 -0
- package/examples/private/123.json +694 -0
- package/examples/private/DEV-12100.json +1303 -0
- package/examples/private/anchor-issue.json +4094 -0
- package/examples/private/backwards-slider.json +10430 -0
- package/examples/private/cat-y.json +1235 -0
- package/examples/private/data-points.json +228 -0
- package/examples/private/georgia.csv +160 -0
- package/examples/private/height.json +3915 -0
- package/examples/private/links.json +569 -0
- package/examples/private/quadrant.txt +30 -0
- package/examples/private/test-forecast.json +5510 -0
- package/examples/private/timeline-data.json +1 -0
- package/examples/private/timeline.json +389 -0
- package/examples/private/warming-stripe-test.json +2578 -0
- package/examples/private/warming-stripes.json +4763 -0
- package/examples/radar-chart-simple.json +133 -0
- package/examples/radar-chart.json +148 -0
- package/examples/tech-adoption-with-links.json +560 -0
- package/index.html +1 -36
- package/package.json +59 -60
- package/src/CdcChartComponent.tsx +206 -89
- package/src/_stories/Chart.Anchors.stories.tsx +10 -0
- package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
- package/src/_stories/Chart.CI.stories.tsx +13 -0
- package/src/_stories/Chart.Combo.stories.tsx +17 -0
- package/src/_stories/Chart.CustomColors.stories.tsx +4 -0
- package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
- package/src/_stories/Chart.Filters.stories.tsx +4 -0
- package/src/_stories/Chart.Forecast.stories.tsx +4 -0
- package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
- package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
- package/src/_stories/Chart.Patterns.stories.tsx +4 -0
- package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
- package/src/_stories/Chart.Regions.Categorical.stories.tsx +161 -0
- package/src/_stories/Chart.Regions.DateScale.stories.tsx +216 -0
- package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +312 -0
- package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
- package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
- package/src/_stories/Chart.stories.tsx +45 -0
- package/src/_stories/Chart.tooltip.stories.tsx +7 -0
- package/src/_stories/ChartAnnotation.stories.tsx +10 -0
- package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
- package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
- package/src/_stories/ChartBar.Editor.stories.tsx +11 -6
- package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
- package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
- package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
- package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
- package/src/_stories/ChartBrush.stories.tsx +57 -0
- package/src/_stories/ChartEditor.Editor.stories.tsx +3 -5
- package/src/_stories/ChartEditor.stories.tsx +7 -0
- package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
- package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
- package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
- package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
- package/src/_stories/TechAdoptionWithLinks.stories.tsx +34 -0
- package/src/_stories/_mock/brush_continuous.json +86 -0
- package/src/_stories/_mock/brush_date_large.json +176 -0
- package/src/_stories/_mock/brush_enabled.json +326 -0
- package/src/_stories/_mock/brush_mock.json +2 -69
- package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
- package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
- package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
- package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
- package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
- package/src/components/Annotations/components/AnnotationDraggable.styles.css +11 -17
- package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
- package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
- package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
- package/src/components/Annotations/components/AnnotationList.styles.css +4 -10
- package/src/components/Annotations/components/AnnotationList.tsx +5 -4
- package/src/components/Annotations/components/findNearestDatum.ts +75 -85
- package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
- package/src/components/AreaChart/components/AreaChart.Stacked.jsx +1 -2
- package/src/components/Axis/BottomAxis.tsx +270 -0
- package/src/components/Axis/Categorical.Axis.tsx +6 -7
- package/src/components/Axis/LeftAxis.tsx +404 -0
- package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
- package/src/components/Axis/PairedBarAxis.tsx +186 -0
- package/src/components/Axis/README.md +94 -0
- package/src/components/Axis/RightAxis.tsx +108 -0
- package/src/components/Axis/axis.constants.ts +21 -0
- package/src/components/Axis/index.ts +7 -0
- package/src/components/BarChart/components/BarChart.Horizontal.tsx +178 -24
- package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
- package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
- package/src/components/BarChart/components/BarChart.Vertical.tsx +6 -8
- package/src/components/BarChart/components/BarChart.tsx +7 -1
- package/src/components/BarChart/components/context.tsx +1 -0
- package/src/components/BarChart/helpers/useBarChart.ts +14 -2
- package/src/components/Brush/BrushSelector.tsx +1390 -0
- package/src/components/Brush/MiniChartPreview.tsx +400 -0
- package/src/components/DeviationBar.jsx +9 -7
- package/src/components/EditorPanel/EditorPanel.tsx +2734 -2595
- package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +60 -22
- package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
- package/src/components/EditorPanel/components/Panels/Panel.General.tsx +137 -30
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +2 -0
- package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
- package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +0 -1
- package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +30 -25
- package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +42 -28
- package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
- package/src/components/EditorPanel/useEditorPermissions.ts +81 -39
- package/src/components/HorizonChart/HorizonChart.tsx +131 -0
- package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
- package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
- package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
- package/src/components/HorizonChart/index.tsx +3 -0
- package/src/components/Legend/Legend.Component.tsx +52 -4
- package/src/components/Legend/Legend.tsx +4 -3
- package/src/components/Legend/LegendValueRange.tsx +77 -0
- package/src/components/Legend/helpers/createFormatLabels.tsx +164 -2
- package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
- package/src/components/Legend/helpers/index.ts +10 -6
- package/src/components/LineChart/helpers/README.md +292 -0
- package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
- package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
- package/src/components/LineChart/index.tsx +44 -8
- package/src/components/LinearChart/README.md +109 -0
- package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
- package/src/components/LinearChart/linearChart.constants.ts +84 -0
- package/src/components/LinearChart/tests/LinearChart.test.tsx +201 -0
- package/src/components/LinearChart/tests/mockConfigContext.ts +129 -0
- package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
- package/src/components/LinearChart.tsx +338 -1082
- package/src/components/PairedBarChart.jsx +20 -3
- package/src/components/PieChart/PieChart.tsx +1 -1
- package/src/components/RadarChart/RadarAxis.tsx +78 -0
- package/src/components/RadarChart/RadarChart.tsx +298 -0
- package/src/components/RadarChart/RadarGrid.tsx +64 -0
- package/src/components/RadarChart/RadarPolygon.tsx +91 -0
- package/src/components/RadarChart/helpers.ts +83 -0
- package/src/components/RadarChart/index.tsx +3 -0
- package/src/components/Regions/components/Regions.tsx +365 -122
- package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
- package/src/components/SmallMultiples/SmallMultipleTile.tsx +5 -1
- package/src/components/WarmingStripes/WarmingStripes.tsx +230 -0
- package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
- package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
- package/src/components/WarmingStripes/index.tsx +3 -0
- package/src/data/initial-state.js +17 -2
- package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
- package/src/helpers/getExcludedData.ts +4 -0
- package/src/helpers/getMinMax.ts +12 -7
- package/src/helpers/handleChartAriaLabels.ts +19 -19
- package/src/helpers/handleLineType.ts +22 -18
- package/src/helpers/sizeHelpers.ts +0 -20
- package/src/helpers/smallMultiplesHelpers.ts +1 -1
- package/src/hooks/useChartHoverAnalytics.tsx +10 -9
- package/src/hooks/useProgrammaticTooltip.ts +23 -2
- package/src/hooks/useScales.ts +18 -1
- package/src/hooks/useTooltip.tsx +34 -10
- package/src/scss/DataTable.scss +0 -4
- package/src/scss/main.scss +22 -3
- package/src/selectors/README.md +68 -0
- package/src/store/chart.reducer.ts +2 -0
- package/src/test/CdcChart.test.jsx +1 -1
- package/src/types/ChartConfig.ts +21 -0
- package/src/types/ChartContext.ts +1 -0
- package/src/types/Horizon.ts +64 -0
- package/src/types/Label.ts +1 -0
- package/src/utils/analyticsTracking.ts +19 -0
- package/LICENSE +0 -201
- package/src/components/Annotations/components/helpers/index.tsx +0 -46
- package/src/components/Brush/BrushChart.tsx +0 -128
- package/src/components/Brush/BrushController.tsx +0 -71
- package/src/components/Brush/types.tsx +0 -8
- package/src/components/BrushChart.tsx +0 -223
|
@@ -0,0 +1,560 @@
|
|
|
1
|
+
{
|
|
2
|
+
"annotations": [],
|
|
3
|
+
"type": "chart",
|
|
4
|
+
"debugSvg": false,
|
|
5
|
+
"chartMessage": {
|
|
6
|
+
"noData": "No Data Available"
|
|
7
|
+
},
|
|
8
|
+
"title": "Technology Adoption Statistics",
|
|
9
|
+
"showTitle": true,
|
|
10
|
+
"showDownloadMediaButton": false,
|
|
11
|
+
"theme": "theme-blue",
|
|
12
|
+
"animate": true,
|
|
13
|
+
"lineDatapointStyle": "hover",
|
|
14
|
+
"lineDatapointColor": "Same as Line",
|
|
15
|
+
"barHasBorder": "true",
|
|
16
|
+
"isLollipopChart": false,
|
|
17
|
+
"lollipopShape": "circle",
|
|
18
|
+
"lollipopColorStyle": "two-tone",
|
|
19
|
+
"visualizationSubType": "regular",
|
|
20
|
+
"barStyle": "rounded",
|
|
21
|
+
"roundingStyle": "standard",
|
|
22
|
+
"tipRounding": "top",
|
|
23
|
+
"isResponsiveTicks": false,
|
|
24
|
+
"general": {
|
|
25
|
+
"annotationDropdownText": "Annotations",
|
|
26
|
+
"showMissingDataLabel": false,
|
|
27
|
+
"showSuppressedSymbol": true,
|
|
28
|
+
"showZeroValueData": true,
|
|
29
|
+
"hideNullValue": true,
|
|
30
|
+
"palette": {
|
|
31
|
+
"isReversed": false,
|
|
32
|
+
"version": "2.0",
|
|
33
|
+
"name": "divergent_green_orange"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"padding": {
|
|
37
|
+
"left": 5,
|
|
38
|
+
"right": 5
|
|
39
|
+
},
|
|
40
|
+
"preliminaryData": [],
|
|
41
|
+
"yAxis": {
|
|
42
|
+
"hideAxis": false,
|
|
43
|
+
"displayNumbersOnBar": true,
|
|
44
|
+
"hideLabel": false,
|
|
45
|
+
"hideTicks": false,
|
|
46
|
+
"size": "75",
|
|
47
|
+
"gridLines": false,
|
|
48
|
+
"enablePadding": false,
|
|
49
|
+
"min": "",
|
|
50
|
+
"max": "",
|
|
51
|
+
"labelColor": "#1c1d1f",
|
|
52
|
+
"tickLabelColor": "#1c1d1f",
|
|
53
|
+
"tickColor": "#1c1d1f",
|
|
54
|
+
"rightHideAxis": false,
|
|
55
|
+
"rightAxisSize": 0,
|
|
56
|
+
"rightLabel": "",
|
|
57
|
+
"rightLabelOffsetSize": 0,
|
|
58
|
+
"rightAxisLabelColor": "#1c1d1f",
|
|
59
|
+
"rightAxisTickLabelColor": "#1c1d1f",
|
|
60
|
+
"rightAxisTickColor": "#1c1d1f",
|
|
61
|
+
"numTicks": "6",
|
|
62
|
+
"axisPadding": 0,
|
|
63
|
+
"scalePadding": 10,
|
|
64
|
+
"tickRotation": 0,
|
|
65
|
+
"anchors": [],
|
|
66
|
+
"shoMissingDataLabel": true,
|
|
67
|
+
"showMissingDataLine": true,
|
|
68
|
+
"categories": [],
|
|
69
|
+
"label": "Adoption Rate (%)",
|
|
70
|
+
"labelPlacement": "Below Bar"
|
|
71
|
+
},
|
|
72
|
+
"boxplot": {
|
|
73
|
+
"plots": [],
|
|
74
|
+
"borders": "true",
|
|
75
|
+
"plotOutlierValues": false,
|
|
76
|
+
"plotNonOutlierValues": true,
|
|
77
|
+
"labels": {
|
|
78
|
+
"q1": "Lower Quartile",
|
|
79
|
+
"q2": "q2",
|
|
80
|
+
"q3": "Upper Quartile",
|
|
81
|
+
"q4": "q4",
|
|
82
|
+
"minimum": "Minimum",
|
|
83
|
+
"maximum": "Maximum",
|
|
84
|
+
"mean": "Mean",
|
|
85
|
+
"median": "Median",
|
|
86
|
+
"sd": "Standard Deviation",
|
|
87
|
+
"iqr": "Interquartile Range",
|
|
88
|
+
"count": "Count",
|
|
89
|
+
"outliers": "Outliers",
|
|
90
|
+
"values": "Values",
|
|
91
|
+
"lowerBounds": "Lower Bounds",
|
|
92
|
+
"upperBounds": "Upper Bounds"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"topAxis": {
|
|
96
|
+
"hasLine": false
|
|
97
|
+
},
|
|
98
|
+
"isLegendValue": false,
|
|
99
|
+
"barThickness": "0.37",
|
|
100
|
+
"barHeight": 25,
|
|
101
|
+
"barSpace": 15,
|
|
102
|
+
"heights": {
|
|
103
|
+
"vertical": 300,
|
|
104
|
+
"horizontal": 250
|
|
105
|
+
},
|
|
106
|
+
"xAxis": {
|
|
107
|
+
"sortDates": false,
|
|
108
|
+
"anchors": [],
|
|
109
|
+
"type": "categorical",
|
|
110
|
+
"showTargetLabel": true,
|
|
111
|
+
"targetLabel": "Target",
|
|
112
|
+
"hideAxis": false,
|
|
113
|
+
"hideLabel": false,
|
|
114
|
+
"hideTicks": false,
|
|
115
|
+
"size": "50",
|
|
116
|
+
"tickRotation": 0,
|
|
117
|
+
"min": "",
|
|
118
|
+
"max": "100",
|
|
119
|
+
"labelColor": "#1c1d1f",
|
|
120
|
+
"tickLabelColor": "#1c1d1f",
|
|
121
|
+
"tickColor": "#1c1d1f",
|
|
122
|
+
"numTicks": "",
|
|
123
|
+
"labelOffset": 0,
|
|
124
|
+
"axisPadding": 200,
|
|
125
|
+
"target": 0,
|
|
126
|
+
"maxTickRotation": "90",
|
|
127
|
+
"padding": 5,
|
|
128
|
+
"showYearsOnce": false,
|
|
129
|
+
"sortByRecentDate": false,
|
|
130
|
+
"brushActive": false,
|
|
131
|
+
"dataKey": "Technology",
|
|
132
|
+
"tickWidthMax": 43,
|
|
133
|
+
"label": "Technology"
|
|
134
|
+
},
|
|
135
|
+
"table": {
|
|
136
|
+
"label": "Data Table",
|
|
137
|
+
"expanded": false,
|
|
138
|
+
"limitHeight": false,
|
|
139
|
+
"height": "500",
|
|
140
|
+
"caption": "",
|
|
141
|
+
"showDownloadUrl": false,
|
|
142
|
+
"showDataTableLink": true,
|
|
143
|
+
"showDownloadLinkBelow": false,
|
|
144
|
+
"indexLabel": "",
|
|
145
|
+
"download": true,
|
|
146
|
+
"showVertical": true,
|
|
147
|
+
"dateDisplayFormat": "",
|
|
148
|
+
"showMissingDataLabel": true,
|
|
149
|
+
"showSuppressedSymbol": true,
|
|
150
|
+
"collapsible": true,
|
|
151
|
+
"show": true,
|
|
152
|
+
"showDownloadImgButton": true,
|
|
153
|
+
"includeContextInDownload": true,
|
|
154
|
+
"groupBy": "",
|
|
155
|
+
"cellMinWidth": "150"
|
|
156
|
+
},
|
|
157
|
+
"orientation": "horizontal",
|
|
158
|
+
"columns": {
|
|
159
|
+
"Users (millions)": {
|
|
160
|
+
"label": "Users (millions)",
|
|
161
|
+
"dataTable": true,
|
|
162
|
+
"tooltips": true,
|
|
163
|
+
"prefix": "",
|
|
164
|
+
"suffix": "M",
|
|
165
|
+
"forestPlot": false,
|
|
166
|
+
"startingPoint": "0",
|
|
167
|
+
"forestPlotAlignRight": false,
|
|
168
|
+
"roundToPlace": 1,
|
|
169
|
+
"commas": true,
|
|
170
|
+
"showInViz": false,
|
|
171
|
+
"forestPlotStartingPoint": 0,
|
|
172
|
+
"name": "Users (millions)"
|
|
173
|
+
},
|
|
174
|
+
"Growth Rate": {
|
|
175
|
+
"label": "Growth Rate",
|
|
176
|
+
"dataTable": true,
|
|
177
|
+
"tooltips": true,
|
|
178
|
+
"prefix": "",
|
|
179
|
+
"suffix": "%",
|
|
180
|
+
"forestPlot": false,
|
|
181
|
+
"startingPoint": "0",
|
|
182
|
+
"forestPlotAlignRight": false,
|
|
183
|
+
"roundToPlace": 1,
|
|
184
|
+
"commas": false,
|
|
185
|
+
"showInViz": false,
|
|
186
|
+
"forestPlotStartingPoint": 0,
|
|
187
|
+
"name": "Growth Rate"
|
|
188
|
+
},
|
|
189
|
+
"Learn More": {
|
|
190
|
+
"label": "Learn More",
|
|
191
|
+
"dataTable": true,
|
|
192
|
+
"tooltips": false,
|
|
193
|
+
"prefix": "",
|
|
194
|
+
"suffix": "",
|
|
195
|
+
"forestPlot": false,
|
|
196
|
+
"startingPoint": "0",
|
|
197
|
+
"forestPlotAlignRight": false,
|
|
198
|
+
"roundToPlace": 0,
|
|
199
|
+
"commas": false,
|
|
200
|
+
"showInViz": false,
|
|
201
|
+
"forestPlotStartingPoint": 0,
|
|
202
|
+
"name": "Learn More"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"legend": {
|
|
206
|
+
"hide": true,
|
|
207
|
+
"behavior": "isolate",
|
|
208
|
+
"axisAlign": true,
|
|
209
|
+
"singleRow": true,
|
|
210
|
+
"colorCode": "",
|
|
211
|
+
"reverseLabelOrder": false,
|
|
212
|
+
"description": "",
|
|
213
|
+
"dynamicLegend": false,
|
|
214
|
+
"dynamicLegendDefaultText": "Show All",
|
|
215
|
+
"dynamicLegendItemLimit": 5,
|
|
216
|
+
"dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
|
|
217
|
+
"dynamicLegendChartMessage": "Select Options from the Legend",
|
|
218
|
+
"label": "",
|
|
219
|
+
"lineMode": false,
|
|
220
|
+
"verticalSorted": false,
|
|
221
|
+
"highlightOnHover": false,
|
|
222
|
+
"hideSuppressedLabels": false,
|
|
223
|
+
"hideSuppressionLink": false,
|
|
224
|
+
"seriesHighlight": [],
|
|
225
|
+
"style": "circles",
|
|
226
|
+
"subStyle": "linear blocks",
|
|
227
|
+
"groupBy": "",
|
|
228
|
+
"shape": "circle",
|
|
229
|
+
"tickRotation": "",
|
|
230
|
+
"order": "dataColumn",
|
|
231
|
+
"hideBorder": {
|
|
232
|
+
"side": false,
|
|
233
|
+
"topBottom": true
|
|
234
|
+
},
|
|
235
|
+
"position": "right",
|
|
236
|
+
"orderedValues": [],
|
|
237
|
+
"patterns": {},
|
|
238
|
+
"patternField": "",
|
|
239
|
+
"unified": true
|
|
240
|
+
},
|
|
241
|
+
"smallMultiples": {
|
|
242
|
+
"mode": "",
|
|
243
|
+
"tileColumn": "",
|
|
244
|
+
"tilesPerRowDesktop": 3,
|
|
245
|
+
"tilesPerRowMobile": 1,
|
|
246
|
+
"tileOrder": [],
|
|
247
|
+
"tileOrderType": "asc",
|
|
248
|
+
"tileTitles": {},
|
|
249
|
+
"independentYAxis": false,
|
|
250
|
+
"colorMode": "same",
|
|
251
|
+
"synchronizedTooltips": true,
|
|
252
|
+
"showAreaUnderLine": true
|
|
253
|
+
},
|
|
254
|
+
"exclusions": {
|
|
255
|
+
"active": false,
|
|
256
|
+
"keys": []
|
|
257
|
+
},
|
|
258
|
+
"twoColor": {
|
|
259
|
+
"palette": "monochrome-1",
|
|
260
|
+
"isPaletteReversed": false
|
|
261
|
+
},
|
|
262
|
+
"labels": false,
|
|
263
|
+
"dataFormat": {
|
|
264
|
+
"commas": true,
|
|
265
|
+
"prefix": "",
|
|
266
|
+
"suffix": "%",
|
|
267
|
+
"abbreviated": false,
|
|
268
|
+
"bottomSuffix": "",
|
|
269
|
+
"bottomPrefix": "",
|
|
270
|
+
"bottomAbbreviated": false
|
|
271
|
+
},
|
|
272
|
+
"filters": [
|
|
273
|
+
{
|
|
274
|
+
"values": ["Social Media", "Cloud Services", "Development Tools", "Communication"],
|
|
275
|
+
"filterStyle": "dropdown",
|
|
276
|
+
"id": 1765208699247,
|
|
277
|
+
"showDropdown": true,
|
|
278
|
+
"active": "Social Media",
|
|
279
|
+
"columnName": "Category",
|
|
280
|
+
"orderedValues": ["Social Media", "Cloud Services", "Development Tools", "Communication"],
|
|
281
|
+
"label": "Select technology category",
|
|
282
|
+
"order": "cust"
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
"confidenceKeys": {},
|
|
286
|
+
"visual": {
|
|
287
|
+
"border": true,
|
|
288
|
+
"accent": true,
|
|
289
|
+
"background": true,
|
|
290
|
+
"verticalHoverLine": false,
|
|
291
|
+
"horizontalHoverLine": false,
|
|
292
|
+
"lineDatapointSymbol": "none",
|
|
293
|
+
"maximumShapeAmount": 7
|
|
294
|
+
},
|
|
295
|
+
"useLogScale": false,
|
|
296
|
+
"filterBehavior": "Filter Change",
|
|
297
|
+
"highlightedBarValues": [],
|
|
298
|
+
"series": [
|
|
299
|
+
{
|
|
300
|
+
"dataKey": "Adoption Rate",
|
|
301
|
+
"type": "Bar",
|
|
302
|
+
"axis": "Left",
|
|
303
|
+
"tooltip": true,
|
|
304
|
+
"dynamicCategory": ""
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"tooltips": {
|
|
308
|
+
"opacity": 90,
|
|
309
|
+
"singleSeries": false,
|
|
310
|
+
"dateDisplayFormat": ""
|
|
311
|
+
},
|
|
312
|
+
"forestPlot": {
|
|
313
|
+
"startAt": 0,
|
|
314
|
+
"colors": {
|
|
315
|
+
"line": "",
|
|
316
|
+
"shape": ""
|
|
317
|
+
},
|
|
318
|
+
"lineOfNoEffect": {
|
|
319
|
+
"show": true
|
|
320
|
+
},
|
|
321
|
+
"type": "",
|
|
322
|
+
"pooledResult": {
|
|
323
|
+
"diamondHeight": 5,
|
|
324
|
+
"column": ""
|
|
325
|
+
},
|
|
326
|
+
"estimateField": "",
|
|
327
|
+
"estimateRadius": "",
|
|
328
|
+
"shape": "square",
|
|
329
|
+
"rowHeight": 20,
|
|
330
|
+
"description": {
|
|
331
|
+
"show": true,
|
|
332
|
+
"text": "description",
|
|
333
|
+
"location": 0
|
|
334
|
+
},
|
|
335
|
+
"result": {
|
|
336
|
+
"show": true,
|
|
337
|
+
"text": "result",
|
|
338
|
+
"location": 100
|
|
339
|
+
},
|
|
340
|
+
"radius": {
|
|
341
|
+
"min": 2,
|
|
342
|
+
"max": 10,
|
|
343
|
+
"scalingColumn": ""
|
|
344
|
+
},
|
|
345
|
+
"regression": {
|
|
346
|
+
"lower": 0,
|
|
347
|
+
"upper": 0,
|
|
348
|
+
"estimateField": 0
|
|
349
|
+
},
|
|
350
|
+
"leftWidthOffset": 0,
|
|
351
|
+
"rightWidthOffset": 0,
|
|
352
|
+
"showZeroLine": false,
|
|
353
|
+
"leftLabel": "",
|
|
354
|
+
"rightLabel": ""
|
|
355
|
+
},
|
|
356
|
+
"area": {
|
|
357
|
+
"isStacked": false
|
|
358
|
+
},
|
|
359
|
+
"sankey": {
|
|
360
|
+
"title": {
|
|
361
|
+
"defaultColor": "black"
|
|
362
|
+
},
|
|
363
|
+
"iterations": 1,
|
|
364
|
+
"rxValue": 0.9,
|
|
365
|
+
"overallSize": {
|
|
366
|
+
"width": 900,
|
|
367
|
+
"height": 700
|
|
368
|
+
},
|
|
369
|
+
"margin": {
|
|
370
|
+
"margin_y": 25,
|
|
371
|
+
"margin_x": 0
|
|
372
|
+
},
|
|
373
|
+
"nodeSize": {
|
|
374
|
+
"nodeWidth": 26,
|
|
375
|
+
"nodeHeight": 40
|
|
376
|
+
},
|
|
377
|
+
"nodePadding": 55,
|
|
378
|
+
"nodeFontColor": "black",
|
|
379
|
+
"nodeColor": {
|
|
380
|
+
"default": "#ff8500",
|
|
381
|
+
"inactive": "#808080"
|
|
382
|
+
},
|
|
383
|
+
"linkColor": {
|
|
384
|
+
"default": "#ffc900",
|
|
385
|
+
"inactive": "#D3D3D3"
|
|
386
|
+
},
|
|
387
|
+
"opacity": {
|
|
388
|
+
"nodeOpacityDefault": 1,
|
|
389
|
+
"nodeOpacityInactive": 0.1,
|
|
390
|
+
"LinkOpacityDefault": 1,
|
|
391
|
+
"LinkOpacityInactive": 0.1
|
|
392
|
+
},
|
|
393
|
+
"storyNodeFontColor": "#006778",
|
|
394
|
+
"storyNodeText": [],
|
|
395
|
+
"nodeValueStyle": {
|
|
396
|
+
"textBefore": "(",
|
|
397
|
+
"textAfter": ")"
|
|
398
|
+
},
|
|
399
|
+
"data": []
|
|
400
|
+
},
|
|
401
|
+
"markupVariables": [],
|
|
402
|
+
"enableMarkupVariables": false,
|
|
403
|
+
"errors": [],
|
|
404
|
+
"currentViewport": "lg",
|
|
405
|
+
"id": 1,
|
|
406
|
+
"category": "Charts",
|
|
407
|
+
"label": "Bar",
|
|
408
|
+
"subType": "Bar",
|
|
409
|
+
"icon": {
|
|
410
|
+
"key": null,
|
|
411
|
+
"ref": null,
|
|
412
|
+
"props": {},
|
|
413
|
+
"_owner": null
|
|
414
|
+
},
|
|
415
|
+
"content": "Use bars to show comparisons between data categories.",
|
|
416
|
+
"visualizationType": "Bar",
|
|
417
|
+
"activeVizButtonID": 1,
|
|
418
|
+
"dataFileName": "",
|
|
419
|
+
"dataFileSourceType": "data",
|
|
420
|
+
"dataDescription": {
|
|
421
|
+
"horizontal": false,
|
|
422
|
+
"series": false
|
|
423
|
+
},
|
|
424
|
+
"version": "4.25.11",
|
|
425
|
+
"migrations": {
|
|
426
|
+
"addColorMigration": true
|
|
427
|
+
},
|
|
428
|
+
"dynamicMarginTop": 0,
|
|
429
|
+
"data": [
|
|
430
|
+
{
|
|
431
|
+
"Category": "Social Media",
|
|
432
|
+
"Technology": "<a href=\"https://developer.twitter.com/en/docs\">Twitter/X</a>",
|
|
433
|
+
"Adoption Rate": "68.2",
|
|
434
|
+
"Users (millions)": "528.3",
|
|
435
|
+
"Growth Rate": "2.1",
|
|
436
|
+
"Learn More": "<a href=\"https://developer.twitter.com/en/docs\">View API Documentation »</a>"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"Category": "Social Media",
|
|
440
|
+
"Technology": "<a href=\"https://developers.facebook.com/docs/instagram\">Instagram</a>",
|
|
441
|
+
"Adoption Rate": "82.5",
|
|
442
|
+
"Users (millions)": "1478.0",
|
|
443
|
+
"Growth Rate": "8.7",
|
|
444
|
+
"Learn More": "<a href=\"https://developers.facebook.com/docs/instagram\">Learn more about Instagram API »</a>"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"Category": "Social Media",
|
|
448
|
+
"Technology": "<a href=\"https://developers.tiktok.com/\">TikTok</a>",
|
|
449
|
+
"Adoption Rate": "73.1",
|
|
450
|
+
"Users (millions)": "1051.0",
|
|
451
|
+
"Growth Rate": "15.2",
|
|
452
|
+
"Learn More": "<a href=\"https://developers.tiktok.com/\">Explore TikTok Developer Platform »</a>"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"Category": "Social Media",
|
|
456
|
+
"Technology": "<a href=\"https://developer.linkedin.com/\">LinkedIn</a>",
|
|
457
|
+
"Adoption Rate": "45.8",
|
|
458
|
+
"Users (millions)": "875.0",
|
|
459
|
+
"Growth Rate": "5.3",
|
|
460
|
+
"Learn More": "<a href=\"https://developer.linkedin.com/\">LinkedIn Developer Resources »</a>"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"Category": "Cloud Services",
|
|
464
|
+
"Technology": "<a href=\"https://aws.amazon.com/documentation/\">AWS</a>",
|
|
465
|
+
"Adoption Rate": "91.3",
|
|
466
|
+
"Users (millions)": "2500.0",
|
|
467
|
+
"Growth Rate": "12.5",
|
|
468
|
+
"Learn More": "<a href=\"https://aws.amazon.com/documentation/\">AWS Documentation »</a>"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"Category": "Cloud Services",
|
|
472
|
+
"Technology": "<a href=\"https://docs.microsoft.com/azure/\">Azure</a>",
|
|
473
|
+
"Adoption Rate": "78.9",
|
|
474
|
+
"Users (millions)": "1800.0",
|
|
475
|
+
"Growth Rate": "18.3",
|
|
476
|
+
"Learn More": "<a href=\"https://docs.microsoft.com/azure/\">Azure Documentation »</a>"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"Category": "Cloud Services",
|
|
480
|
+
"Technology": "<a href=\"https://cloud.google.com/docs\">Google Cloud</a>",
|
|
481
|
+
"Adoption Rate": "62.4",
|
|
482
|
+
"Users (millions)": "1200.0",
|
|
483
|
+
"Growth Rate": "22.1",
|
|
484
|
+
"Learn More": "<a href=\"https://cloud.google.com/docs\">Google Cloud Docs »</a>"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"Category": "Cloud Services",
|
|
488
|
+
"Technology": "<a href=\"https://docs.digitalocean.com/\">DigitalOcean</a>",
|
|
489
|
+
"Adoption Rate": "34.2",
|
|
490
|
+
"Users (millions)": "385.0",
|
|
491
|
+
"Growth Rate": "6.8",
|
|
492
|
+
"Learn More": "<a href=\"https://docs.digitalocean.com/\">DigitalOcean Documentation »</a>"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"Category": "Really really long long Development Tools",
|
|
496
|
+
"Technology": "<a href=\"https://docs.github.com/\">GitHub</a>",
|
|
497
|
+
"Adoption Rate": "94.6",
|
|
498
|
+
"Users (millions)": "100.0",
|
|
499
|
+
"Growth Rate": "9.2",
|
|
500
|
+
"Learn More": "<a href=\"https://docs.github.com/\">GitHub Documentation »</a>"
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"Category": "Really really long long Development Tools",
|
|
504
|
+
"Technology": "<a href=\"https://code.visualstudio.com/docs\">VS Code</a>",
|
|
505
|
+
"Adoption Rate": "87.3",
|
|
506
|
+
"Users (millions)": "14.0",
|
|
507
|
+
"Growth Rate": "11.5",
|
|
508
|
+
"Learn More": "<a href=\"https://code.visualstudio.com/docs\">VS Code Documentation »</a>"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"Category": "Really really long long Development Tools",
|
|
512
|
+
"Technology": "<a href=\"https://docs.docker.com/\">Docker</a>",
|
|
513
|
+
"Adoption Rate": "79.8",
|
|
514
|
+
"Users (millions)": "13.0",
|
|
515
|
+
"Growth Rate": "14.3",
|
|
516
|
+
"Learn More": "<a href=\"https://docs.docker.com/\">Docker Documentation »</a>"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"Category": "Really really long long Development Tools",
|
|
520
|
+
"Technology": "<a href=\"https://docs.npmjs.com/\">npm</a>",
|
|
521
|
+
"Adoption Rate": "85.2",
|
|
522
|
+
"Users (millions)": "17.0",
|
|
523
|
+
"Growth Rate": "7.9",
|
|
524
|
+
"Learn More": "<a href=\"https://docs.npmjs.com/\">npm Documentation »</a>"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"Category": "Communication",
|
|
528
|
+
"Technology": "<a href=\"https://api.slack.com/\">Slack</a>",
|
|
529
|
+
"Adoption Rate": "71.5",
|
|
530
|
+
"Users (millions)": "18.0",
|
|
531
|
+
"Growth Rate": "10.2",
|
|
532
|
+
"Learn More": "<a href=\"https://api.slack.com/\">Slack API Documentation »</a>"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"Category": "Communication",
|
|
536
|
+
"Technology": "<a href=\"https://docs.microsoft.com/microsoftteams/\">Microsoft Teams</a>",
|
|
537
|
+
"Adoption Rate": "68.9",
|
|
538
|
+
"Users (millions)": "280.0",
|
|
539
|
+
"Growth Rate": "25.7",
|
|
540
|
+
"Learn More": "<a href=\"https://docs.microsoft.com/microsoftteams/\">Teams Documentation »</a>"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"Category": "Communication",
|
|
544
|
+
"Technology": "<a href=\"https://developers.zoom.us/\">Zoom</a>",
|
|
545
|
+
"Adoption Rate": "75.2",
|
|
546
|
+
"Users (millions)": "300.0",
|
|
547
|
+
"Growth Rate": "8.4",
|
|
548
|
+
"Learn More": "<a href=\"https://developers.zoom.us/\">Zoom Developer Platform »</a>"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"Category": "Communication",
|
|
552
|
+
"Technology": "<a href=\"https://discord.com/developers/docs/\">Discord</a>",
|
|
553
|
+
"Adoption Rate": "56.3",
|
|
554
|
+
"Users (millions)": "150.0",
|
|
555
|
+
"Growth Rate": "19.6",
|
|
556
|
+
"Learn More": "<a href=\"https://discord.com/developers/docs/\">Discord Developer Portal »</a>"
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
"datasets": {}
|
|
560
|
+
}
|
package/index.html
CHANGED
|
@@ -1,36 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="utf-8" />
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
7
|
-
<style>
|
|
8
|
-
body {
|
|
9
|
-
margin: 0;
|
|
10
|
-
border-top: none !important;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.cdc-map-outer-container {
|
|
14
|
-
min-height: 100vh;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/* .react-container + .react-container {
|
|
18
|
-
margin-top: 3rem;
|
|
19
|
-
} */
|
|
20
|
-
</style>
|
|
21
|
-
<link rel="stylesheet prefetch" href="https://www.cdc.gov/TemplatePackage/5.0/css/app.min.css?_=71669" />
|
|
22
|
-
</head>
|
|
23
|
-
|
|
24
|
-
<body>
|
|
25
|
-
|
|
26
|
-
<!-- GENERIC CHART TYPES -->
|
|
27
|
-
<div class="react-container" data-config="/examples/feature/combo/planet-combo-example-config.json"></div>
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
32
|
-
|
|
33
|
-
<script type="module" src="./src/index.jsx"></script>
|
|
34
|
-
</body>
|
|
35
|
-
|
|
36
|
-
</html>
|
|
1
|
+
<!-- index.html is generated by @cdc/core/generateViteConfig.js using the files in @cdc/core/devTemplate/ -->
|