@cdc/chart 4.26.1 → 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.
Files changed (132) hide show
  1. package/CLAUDE.local.md +79 -0
  2. package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
  3. package/dist/cdcchart.js +45357 -43655
  4. package/examples/default.json +378 -0
  5. package/examples/feature/__data__/horizon-chart-data.json +373 -0
  6. package/examples/feature/annotations/index.json +3 -6
  7. package/examples/feature/horizon/horizon-chart.json +395 -0
  8. package/examples/line-chart-states.json +1085 -0
  9. package/examples/private/123.json +694 -0
  10. package/examples/private/anchor-issue.json +4094 -0
  11. package/examples/private/backwards-slider.json +10430 -0
  12. package/examples/private/georgia.csv +160 -0
  13. package/examples/private/timeline-data.json +1 -0
  14. package/examples/private/timeline.json +389 -0
  15. package/examples/radar-chart-simple.json +133 -0
  16. package/examples/radar-chart.json +148 -0
  17. package/index.html +1 -31
  18. package/package.json +57 -59
  19. package/src/CdcChartComponent.tsx +99 -18
  20. package/src/_stories/Chart.Anchors.stories.tsx +10 -0
  21. package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
  22. package/src/_stories/Chart.CI.stories.tsx +13 -0
  23. package/src/_stories/Chart.Combo.stories.tsx +17 -0
  24. package/src/_stories/Chart.CustomColors.stories.tsx +4 -0
  25. package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
  26. package/src/_stories/Chart.Filters.stories.tsx +4 -0
  27. package/src/_stories/Chart.Forecast.stories.tsx +4 -0
  28. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
  29. package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
  30. package/src/_stories/Chart.Patterns.stories.tsx +4 -0
  31. package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
  32. package/src/_stories/Chart.Regions.Categorical.stories.tsx +13 -0
  33. package/src/_stories/Chart.Regions.DateScale.stories.tsx +19 -0
  34. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +25 -10
  35. package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
  36. package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
  37. package/src/_stories/Chart.stories.tsx +37 -0
  38. package/src/_stories/Chart.tooltip.stories.tsx +7 -0
  39. package/src/_stories/ChartAnnotation.stories.tsx +10 -0
  40. package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
  41. package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
  42. package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
  43. package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
  44. package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
  45. package/src/_stories/ChartBrush.stories.tsx +7 -0
  46. package/src/_stories/ChartEditor.stories.tsx +7 -0
  47. package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
  48. package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
  49. package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
  50. package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
  51. package/src/_stories/TechAdoptionWithLinks.stories.tsx +7 -0
  52. package/src/_stories/_mock/brush_continuous.json +86 -0
  53. package/src/_stories/_mock/brush_date_large.json +176 -0
  54. package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
  55. package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
  56. package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
  57. package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
  58. package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
  59. package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
  60. package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
  61. package/src/components/Annotations/components/AnnotationDraggable.styles.css +11 -17
  62. package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
  63. package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
  64. package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
  65. package/src/components/Annotations/components/AnnotationList.styles.css +4 -10
  66. package/src/components/Annotations/components/AnnotationList.tsx +5 -4
  67. package/src/components/Annotations/components/findNearestDatum.ts +75 -85
  68. package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
  69. package/src/components/Axis/BottomAxis.tsx +270 -0
  70. package/src/components/Axis/LeftAxis.tsx +404 -0
  71. package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
  72. package/src/components/Axis/PairedBarAxis.tsx +186 -0
  73. package/src/components/Axis/README.md +94 -0
  74. package/src/components/Axis/RightAxis.tsx +108 -0
  75. package/src/components/Axis/axis.constants.ts +21 -0
  76. package/src/components/Axis/index.ts +7 -0
  77. package/src/components/BarChart/components/BarChart.tsx +7 -1
  78. package/src/components/Brush/BrushSelector.tsx +154 -22
  79. package/src/components/Brush/MiniChartPreview.tsx +138 -21
  80. package/src/components/EditorPanel/EditorPanel.tsx +25 -11
  81. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +60 -22
  82. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +81 -1
  83. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +1 -1
  84. package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
  85. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +0 -1
  86. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +21 -1
  87. package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
  88. package/src/components/EditorPanel/useEditorPermissions.ts +55 -26
  89. package/src/components/HorizonChart/HorizonChart.tsx +131 -0
  90. package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
  91. package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
  92. package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
  93. package/src/components/HorizonChart/index.tsx +3 -0
  94. package/src/components/Legend/Legend.Component.tsx +52 -4
  95. package/src/components/Legend/Legend.tsx +1 -1
  96. package/src/components/Legend/LegendValueRange.tsx +77 -0
  97. package/src/components/Legend/helpers/createFormatLabels.tsx +13 -0
  98. package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
  99. package/src/components/LineChart/helpers/README.md +292 -0
  100. package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
  101. package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
  102. package/src/components/LineChart/index.tsx +44 -8
  103. package/src/components/LinearChart/README.md +109 -0
  104. package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
  105. package/src/components/LinearChart/linearChart.constants.ts +84 -0
  106. package/src/components/LinearChart/tests/LinearChart.test.tsx +201 -0
  107. package/src/components/LinearChart/tests/mockConfigContext.ts +129 -0
  108. package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
  109. package/src/components/LinearChart.tsx +250 -1059
  110. package/src/components/PieChart/PieChart.tsx +1 -1
  111. package/src/components/RadarChart/RadarAxis.tsx +78 -0
  112. package/src/components/RadarChart/RadarChart.tsx +298 -0
  113. package/src/components/RadarChart/RadarGrid.tsx +64 -0
  114. package/src/components/RadarChart/RadarPolygon.tsx +91 -0
  115. package/src/components/RadarChart/helpers.ts +83 -0
  116. package/src/components/RadarChart/index.tsx +3 -0
  117. package/src/components/WarmingStripes/WarmingStripes.tsx +95 -25
  118. package/src/data/initial-state.js +14 -1
  119. package/src/helpers/getExcludedData.ts +4 -0
  120. package/src/helpers/handleChartAriaLabels.ts +19 -19
  121. package/src/helpers/handleLineType.ts +22 -18
  122. package/src/hooks/useProgrammaticTooltip.ts +23 -2
  123. package/src/hooks/useScales.ts +7 -0
  124. package/src/hooks/useTooltip.tsx +3 -0
  125. package/src/scss/main.scss +5 -0
  126. package/src/selectors/README.md +68 -0
  127. package/src/store/chart.reducer.ts +2 -0
  128. package/src/types/ChartConfig.ts +18 -0
  129. package/src/types/ChartContext.ts +1 -0
  130. package/src/types/Horizon.ts +64 -0
  131. package/preview.html +0 -1616
  132. package/src/components/Annotations/components/helpers/index.tsx +0 -46
@@ -0,0 +1,195 @@
1
+ {
2
+ "type": "chart",
3
+ "title": "Quadrant 3: Steep Downward (180°-269°)",
4
+ "theme": "theme-blue",
5
+ "animate": false,
6
+ "fontSize": "medium",
7
+ "lineDatapointStyle": "always show",
8
+ "visualizationSubType": "regular",
9
+ "padding": {
10
+ "left": 5,
11
+ "right": 5
12
+ },
13
+ "yAxis": {
14
+ "hideAxis": false,
15
+ "displayNumbersOnBar": false,
16
+ "hideLabel": false,
17
+ "hideTicks": false,
18
+ "size": "68",
19
+ "gridLines": true,
20
+ "enablePadding": false,
21
+ "min": "0",
22
+ "max": "120",
23
+ "labelColor": "#333",
24
+ "tickLabelColor": "#333",
25
+ "tickColor": "#333",
26
+ "numTicks": "",
27
+ "axisPadding": 0,
28
+ "scalePadding": 10,
29
+ "tickRotation": 0,
30
+ "label": "Value"
31
+ },
32
+ "topAxis": {
33
+ "hasLine": false
34
+ },
35
+ "height": "450",
36
+ "xAxis": {
37
+ "sortDates": false,
38
+ "type": "categorical",
39
+ "hideAxis": false,
40
+ "hideLabel": false,
41
+ "hideTicks": false,
42
+ "size": "78",
43
+ "tickRotation": "0",
44
+ "min": "",
45
+ "max": "",
46
+ "labelColor": "#333",
47
+ "tickLabelColor": "#333",
48
+ "tickColor": "#333",
49
+ "numTicks": "",
50
+ "labelOffset": 0,
51
+ "axisPadding": 0,
52
+ "padding": 5,
53
+ "dataKey": "Category",
54
+ "label": "Data Points"
55
+ },
56
+ "table": {
57
+ "label": "Data Table",
58
+ "expanded": false,
59
+ "limitHeight": false,
60
+ "height": "",
61
+ "caption": "Testing steep downward angles (Q3: 180°-269°)",
62
+ "showDownloadUrl": false,
63
+ "showDataTableLink": true,
64
+ "showDownloadLinkBelow": true,
65
+ "download": true,
66
+ "showVertical": true,
67
+ "show": true
68
+ },
69
+ "orientation": "vertical",
70
+ "legend": {
71
+ "hide": false,
72
+ "behavior": "highlight",
73
+ "axisAlign": true,
74
+ "singleRow": false,
75
+ "colorCode": "",
76
+ "reverseLabelOrder": false,
77
+ "description": "Steep downward angle line",
78
+ "label": "Series",
79
+ "lineMode": false,
80
+ "verticalSorted": false,
81
+ "highlightOnHover": false,
82
+ "style": "lines",
83
+ "subStyle": "linear blocks",
84
+ "shape": "circle",
85
+ "hideBorder": {
86
+ "side": false,
87
+ "topBottom": true
88
+ },
89
+ "position": "right",
90
+ "hasShape": true
91
+ },
92
+ "exclusions": {
93
+ "active": false,
94
+ "keys": []
95
+ },
96
+ "palette": "qualitative4",
97
+ "isPaletteReversed": false,
98
+ "labels": true,
99
+ "dataFormat": {
100
+ "commas": false,
101
+ "prefix": "",
102
+ "suffix": "",
103
+ "abbreviated": false
104
+ },
105
+ "confidenceKeys": {},
106
+ "visual": {
107
+ "border": true,
108
+ "accent": true,
109
+ "background": true,
110
+ "verticalHoverLine": false,
111
+ "horizontalHoverLine": false,
112
+ "lineDatapointSymbol": "standard"
113
+ },
114
+ "data": [
115
+ {
116
+ "Category": "A",
117
+ "Steep Downward (Q3)": "100"
118
+ },
119
+ {
120
+ "Category": "B",
121
+ "Steep Downward (Q3)": "90"
122
+ },
123
+ {
124
+ "Category": "C",
125
+ "Steep Downward (Q3)": "10"
126
+ },
127
+ {
128
+ "Category": "D",
129
+ "Steep Downward (Q3)": "0"
130
+ },
131
+ {
132
+ "Category": "E",
133
+ "Steep Downward (Q3)": "10"
134
+ },
135
+ {
136
+ "Category": "F",
137
+ "Steep Downward (Q3)": "100"
138
+ },
139
+ {
140
+ "Category": "G",
141
+ "Steep Downward (Q3)": "80"
142
+ },
143
+ {
144
+ "Category": "H",
145
+ "Steep Downward (Q3)": "90"
146
+ }
147
+ ],
148
+ "visualizationType": "Line",
149
+ "series": [
150
+ {
151
+ "dataKey": "Steep Downward (Q3)",
152
+ "type": "Line",
153
+ "axis": "Left",
154
+ "tooltip": true
155
+ }
156
+ ],
157
+ "description": "Testing Quadrant 3 angles (180°-269°) - steep downward slopes where labels should be positioned to avoid line overlap.",
158
+ "annotations": [],
159
+ "debugSvg": false,
160
+ "chartMessage": {
161
+ "noData": "No Data Available"
162
+ },
163
+ "showTitle": true,
164
+ "showDownloadMediaButton": false,
165
+ "lineDatapointColor": "Same as Line",
166
+ "isResponsiveTicks": false,
167
+ "general": {
168
+ "annotationDropdownText": "Annotations",
169
+ "showDownloadButton": false,
170
+ "showMissingDataLabel": true,
171
+ "showSuppressedSymbol": true,
172
+ "showZeroValueData": true,
173
+ "hideNullValue": true,
174
+ "useIntelligentLineChartLabels": true
175
+ },
176
+ "isLegendValue": false,
177
+ "barSpace": 15,
178
+ "heights": {
179
+ "vertical": 450,
180
+ "horizontal": 750
181
+ },
182
+ "columns": {},
183
+ "brush": {
184
+ "height": 45,
185
+ "active": false
186
+ },
187
+ "useLogScale": false,
188
+ "filterBehavior": "Filter Change",
189
+ "tooltips": {
190
+ "opacity": 90,
191
+ "singleSeries": false,
192
+ "dateDisplayFormat": ""
193
+ },
194
+ "version": "4.25.1"
195
+ }
@@ -0,0 +1,195 @@
1
+ {
2
+ "type": "chart",
3
+ "title": "Quadrant 4: Gentle Upward (269°-360°)",
4
+ "theme": "theme-blue",
5
+ "animate": false,
6
+ "fontSize": "medium",
7
+ "lineDatapointStyle": "always show",
8
+ "visualizationSubType": "regular",
9
+ "padding": {
10
+ "left": 5,
11
+ "right": 5
12
+ },
13
+ "yAxis": {
14
+ "hideAxis": false,
15
+ "displayNumbersOnBar": false,
16
+ "hideLabel": false,
17
+ "hideTicks": false,
18
+ "size": "68",
19
+ "gridLines": true,
20
+ "enablePadding": false,
21
+ "min": "0",
22
+ "max": "120",
23
+ "labelColor": "#333",
24
+ "tickLabelColor": "#333",
25
+ "tickColor": "#333",
26
+ "numTicks": "",
27
+ "axisPadding": 0,
28
+ "scalePadding": 10,
29
+ "tickRotation": 0,
30
+ "label": "Value"
31
+ },
32
+ "topAxis": {
33
+ "hasLine": false
34
+ },
35
+ "height": "450",
36
+ "xAxis": {
37
+ "sortDates": false,
38
+ "type": "categorical",
39
+ "hideAxis": false,
40
+ "hideLabel": false,
41
+ "hideTicks": false,
42
+ "size": "78",
43
+ "tickRotation": "0",
44
+ "min": "",
45
+ "max": "",
46
+ "labelColor": "#333",
47
+ "tickLabelColor": "#333",
48
+ "tickColor": "#333",
49
+ "numTicks": "",
50
+ "labelOffset": 0,
51
+ "axisPadding": 0,
52
+ "padding": 5,
53
+ "dataKey": "Category",
54
+ "label": "Data Points"
55
+ },
56
+ "table": {
57
+ "label": "Data Table",
58
+ "expanded": false,
59
+ "limitHeight": false,
60
+ "height": "",
61
+ "caption": "Testing gentle upward angles (Q4: 269°-360°)",
62
+ "showDownloadUrl": false,
63
+ "showDataTableLink": true,
64
+ "showDownloadLinkBelow": true,
65
+ "download": true,
66
+ "showVertical": true,
67
+ "show": true
68
+ },
69
+ "orientation": "vertical",
70
+ "legend": {
71
+ "hide": false,
72
+ "behavior": "highlight",
73
+ "axisAlign": true,
74
+ "singleRow": false,
75
+ "colorCode": "",
76
+ "reverseLabelOrder": false,
77
+ "description": "Gentle upward angle line",
78
+ "label": "Series",
79
+ "lineMode": false,
80
+ "verticalSorted": false,
81
+ "highlightOnHover": false,
82
+ "style": "lines",
83
+ "subStyle": "linear blocks",
84
+ "shape": "circle",
85
+ "hideBorder": {
86
+ "side": false,
87
+ "topBottom": true
88
+ },
89
+ "position": "right",
90
+ "hasShape": true
91
+ },
92
+ "exclusions": {
93
+ "active": false,
94
+ "keys": []
95
+ },
96
+ "palette": "qualitative4",
97
+ "isPaletteReversed": false,
98
+ "labels": true,
99
+ "dataFormat": {
100
+ "commas": false,
101
+ "prefix": "",
102
+ "suffix": "",
103
+ "abbreviated": false
104
+ },
105
+ "confidenceKeys": {},
106
+ "visual": {
107
+ "border": true,
108
+ "accent": true,
109
+ "background": true,
110
+ "verticalHoverLine": false,
111
+ "horizontalHoverLine": false,
112
+ "lineDatapointSymbol": "standard"
113
+ },
114
+ "data": [
115
+ {
116
+ "Category": "A",
117
+ "Gentle Upward (Q4)": "10"
118
+ },
119
+ {
120
+ "Category": "B",
121
+ "Gentle Upward (Q4)": "20"
122
+ },
123
+ {
124
+ "Category": "C",
125
+ "Gentle Upward (Q4)": "80"
126
+ },
127
+ {
128
+ "Category": "D",
129
+ "Gentle Upward (Q4)": "90"
130
+ },
131
+ {
132
+ "Category": "E",
133
+ "Gentle Upward (Q4)": "100"
134
+ },
135
+ {
136
+ "Category": "F",
137
+ "Gentle Upward (Q4)": "80"
138
+ },
139
+ {
140
+ "Category": "G",
141
+ "Gentle Upward (Q4)": "20"
142
+ },
143
+ {
144
+ "Category": "H",
145
+ "Gentle Upward (Q4)": "90"
146
+ }
147
+ ],
148
+ "visualizationType": "Line",
149
+ "series": [
150
+ {
151
+ "dataKey": "Gentle Upward (Q4)",
152
+ "type": "Line",
153
+ "axis": "Left",
154
+ "tooltip": true
155
+ }
156
+ ],
157
+ "description": "Testing Quadrant 4 angles (269°-360°) - gentle upward slopes where labels should be positioned to avoid line overlap.",
158
+ "annotations": [],
159
+ "debugSvg": false,
160
+ "chartMessage": {
161
+ "noData": "No Data Available"
162
+ },
163
+ "showTitle": true,
164
+ "showDownloadMediaButton": false,
165
+ "lineDatapointColor": "Same as Line",
166
+ "isResponsiveTicks": false,
167
+ "general": {
168
+ "annotationDropdownText": "Annotations",
169
+ "showDownloadButton": false,
170
+ "showMissingDataLabel": true,
171
+ "showSuppressedSymbol": true,
172
+ "showZeroValueData": true,
173
+ "hideNullValue": true,
174
+ "useIntelligentLineChartLabels": true
175
+ },
176
+ "isLegendValue": false,
177
+ "barSpace": 15,
178
+ "heights": {
179
+ "vertical": 450,
180
+ "horizontal": 750
181
+ },
182
+ "columns": {},
183
+ "brush": {
184
+ "height": 45,
185
+ "active": false
186
+ },
187
+ "useLogScale": false,
188
+ "filterBehavior": "Filter Change",
189
+ "tooltips": {
190
+ "opacity": 90,
191
+ "singleSeries": false,
192
+ "dateDisplayFormat": ""
193
+ },
194
+ "version": "4.25.1"
195
+ }
@@ -0,0 +1,264 @@
1
+ {
2
+ "type": "chart",
3
+ "title": "Line Chart - Quadrant Angle Testing",
4
+ "theme": "theme-blue",
5
+ "animate": false,
6
+ "fontSize": "medium",
7
+ "lineDatapointStyle": "always show",
8
+ "visualizationSubType": "regular",
9
+ "padding": {
10
+ "left": 5,
11
+ "right": 5
12
+ },
13
+ "yAxis": {
14
+ "hideAxis": false,
15
+ "displayNumbersOnBar": false,
16
+ "hideLabel": false,
17
+ "hideTicks": false,
18
+ "size": "68",
19
+ "gridLines": true,
20
+ "enablePadding": false,
21
+ "min": "0",
22
+ "max": "120",
23
+ "labelColor": "#333",
24
+ "tickLabelColor": "#333",
25
+ "tickColor": "#333",
26
+ "numTicks": "",
27
+ "axisPadding": 0,
28
+ "scalePadding": 10,
29
+ "tickRotation": 0,
30
+ "label": "Value"
31
+ },
32
+ "topAxis": {
33
+ "hasLine": false
34
+ },
35
+ "height": "450",
36
+ "xAxis": {
37
+ "sortDates": false,
38
+ "type": "categorical",
39
+ "hideAxis": false,
40
+ "hideLabel": false,
41
+ "hideTicks": false,
42
+ "size": "78",
43
+ "tickRotation": "0",
44
+ "min": "",
45
+ "max": "",
46
+ "labelColor": "#333",
47
+ "tickLabelColor": "#333",
48
+ "tickColor": "#333",
49
+ "numTicks": "",
50
+ "labelOffset": 0,
51
+ "axisPadding": 0,
52
+ "padding": 5,
53
+ "dataKey": "Category",
54
+ "label": "Data Points"
55
+ },
56
+ "table": {
57
+ "label": "Data Table",
58
+ "expanded": false,
59
+ "limitHeight": false,
60
+ "height": "",
61
+ "caption": "Data for testing quadrant angle positioning",
62
+ "showDownloadUrl": false,
63
+ "showDataTableLink": true,
64
+ "showDownloadLinkBelow": true,
65
+ "download": true,
66
+ "showVertical": true,
67
+ "show": true
68
+ },
69
+ "orientation": "vertical",
70
+ "legend": {
71
+ "hide": false,
72
+ "behavior": "highlight",
73
+ "axisAlign": true,
74
+ "singleRow": false,
75
+ "colorCode": "",
76
+ "reverseLabelOrder": false,
77
+ "description": "Different series to test various angle scenarios",
78
+ "label": "Test Series",
79
+ "lineMode": false,
80
+ "verticalSorted": false,
81
+ "highlightOnHover": false,
82
+ "style": "lines",
83
+ "subStyle": "linear blocks",
84
+ "shape": "circle",
85
+ "hideBorder": {
86
+ "side": false,
87
+ "topBottom": true
88
+ },
89
+ "position": "right",
90
+ "hasShape": true
91
+ },
92
+ "exclusions": {
93
+ "active": false,
94
+ "keys": []
95
+ },
96
+ "palette": "qualitative4",
97
+ "isPaletteReversed": false,
98
+ "labels": true,
99
+ "dataFormat": {
100
+ "commas": false,
101
+ "prefix": "",
102
+ "suffix": "",
103
+ "abbreviated": false
104
+ },
105
+ "confidenceKeys": {},
106
+ "visual": {
107
+ "border": true,
108
+ "accent": true,
109
+ "background": true,
110
+ "verticalHoverLine": false,
111
+ "horizontalHoverLine": false,
112
+ "lineDatapointSymbol": "standard"
113
+ },
114
+ "data": [
115
+ {
116
+ "Category": "A",
117
+ "Steep Upward (Q1)": "10",
118
+ "Gentle Downward (Q2)": "100",
119
+ "Steep Downward (Q3)": "100",
120
+ "Gentle Upward (Q4)": "10",
121
+ "Near Zero Rise": "5",
122
+ "Near Zero Fall": "5"
123
+ },
124
+ {
125
+ "Category": "B",
126
+ "Steep Upward (Q1)": "90",
127
+ "Gentle Downward (Q2)": "80",
128
+ "Steep Downward (Q3)": "90",
129
+ "Gentle Upward (Q4)": "20",
130
+ "Near Zero Rise": "10",
131
+ "Near Zero Fall": "0"
132
+ },
133
+ {
134
+ "Category": "C",
135
+ "Steep Upward (Q1)": "100",
136
+ "Gentle Downward (Q2)": "90",
137
+ "Steep Downward (Q3)": "10",
138
+ "Gentle Upward (Q4)": "80",
139
+ "Near Zero Rise": "80",
140
+ "Near Zero Fall": "80"
141
+ },
142
+ {
143
+ "Category": "D",
144
+ "Steep Upward (Q1)": "80",
145
+ "Gentle Downward (Q2)": "100",
146
+ "Steep Downward (Q3)": "0",
147
+ "Gentle Upward (Q4)": "90",
148
+ "Near Zero Rise": "90",
149
+ "Near Zero Fall": "90"
150
+ },
151
+ {
152
+ "Category": "E",
153
+ "Steep Upward (Q1)": "20",
154
+ "Gentle Downward (Q2)": "90",
155
+ "Steep Downward (Q3)": "10",
156
+ "Gentle Upward (Q4)": "100",
157
+ "Near Zero Rise": "0",
158
+ "Near Zero Fall": "100"
159
+ },
160
+ {
161
+ "Category": "F",
162
+ "Steep Upward (Q1)": "100",
163
+ "Gentle Downward (Q2)": "10",
164
+ "Steep Downward (Q3)": "100",
165
+ "Gentle Upward (Q4)": "80",
166
+ "Near Zero Rise": "5",
167
+ "Near Zero Fall": "10"
168
+ },
169
+ {
170
+ "Category": "G",
171
+ "Steep Upward (Q1)": "90",
172
+ "Gentle Downward (Q2)": "80",
173
+ "Steep Downward (Q3)": "80",
174
+ "Gentle Upward (Q4)": "20",
175
+ "Near Zero Rise": "100",
176
+ "Near Zero Fall": "5"
177
+ },
178
+ {
179
+ "Category": "H",
180
+ "Steep Upward (Q1)": "10",
181
+ "Gentle Downward (Q2)": "100",
182
+ "Steep Downward (Q3)": "90",
183
+ "Gentle Upward (Q4)": "90",
184
+ "Near Zero Rise": "10",
185
+ "Near Zero Fall": "0"
186
+ }
187
+ ],
188
+ "visualizationType": "Line",
189
+ "series": [
190
+ {
191
+ "dataKey": "Steep Upward (Q1)",
192
+ "type": "Line",
193
+ "axis": "Left",
194
+ "tooltip": true
195
+ },
196
+ {
197
+ "dataKey": "Gentle Downward (Q2)",
198
+ "type": "Line",
199
+ "axis": "Left",
200
+ "tooltip": true
201
+ },
202
+ {
203
+ "dataKey": "Steep Downward (Q3)",
204
+ "type": "Line",
205
+ "axis": "Left",
206
+ "tooltip": true
207
+ },
208
+ {
209
+ "dataKey": "Gentle Upward (Q4)",
210
+ "type": "Line",
211
+ "axis": "Left",
212
+ "tooltip": true
213
+ },
214
+ {
215
+ "dataKey": "Near Zero Rise",
216
+ "type": "Line",
217
+ "axis": "Left",
218
+ "tooltip": true
219
+ },
220
+ {
221
+ "dataKey": "Near Zero Fall",
222
+ "type": "Line",
223
+ "axis": "Left",
224
+ "tooltip": true
225
+ }
226
+ ],
227
+ "description": "This chart contains multiple line series designed to create various angles for testing quadrant-based label positioning. Each series demonstrates different angle scenarios: Quadrant 1 (1°-89° steep upward), Quadrant 2 (91°-179° gentle downward), Quadrant 3 (180°-269° steep downward), Quadrant 4 (269°-360° gentle upward), and edge cases near the x-axis.",
228
+ "annotations": [],
229
+ "debugSvg": false,
230
+ "chartMessage": {
231
+ "noData": "No Data Available"
232
+ },
233
+ "showTitle": true,
234
+ "showDownloadMediaButton": false,
235
+ "lineDatapointColor": "Same as Line",
236
+ "isResponsiveTicks": false,
237
+ "general": {
238
+ "annotationDropdownText": "Annotations",
239
+ "showDownloadButton": false,
240
+ "showMissingDataLabel": true,
241
+ "showSuppressedSymbol": true,
242
+ "showZeroValueData": true,
243
+ "hideNullValue": true
244
+ },
245
+ "isLegendValue": false,
246
+ "barSpace": 15,
247
+ "heights": {
248
+ "vertical": 450,
249
+ "horizontal": 750
250
+ },
251
+ "columns": {},
252
+ "brush": {
253
+ "height": 45,
254
+ "active": false
255
+ },
256
+ "useLogScale": false,
257
+ "filterBehavior": "Filter Change",
258
+ "tooltips": {
259
+ "opacity": 90,
260
+ "singleSeries": false,
261
+ "dateDisplayFormat": ""
262
+ },
263
+ "version": "4.25.1"
264
+ }
@@ -1,10 +1,11 @@
1
- .cdc-open-viz-module .annotation__desktop-label {
2
- display: none;
1
+ .cdc-open-viz-module.type-chart .annotation__desktop-label {
2
+ line-height: 1.1rem;
3
+ font-size: 16px;
3
4
  }
4
5
 
5
- .cdc-open-viz-module {
6
+ .cdc-open-viz-module.type-chart {
6
7
  .annotation__mobile-label-circle {
7
- stroke-width: 2;
8
+ stroke-width: 1;
8
9
  }
9
10
 
10
11
  .annotation__has-dropdown-number {
@@ -12,20 +13,13 @@
12
13
  justify-content: center;
13
14
  align-items: center;
14
15
  border-radius: 50%;
15
- padding: 8px;
16
- width: 16px;
17
- height: 16px;
18
- border: 2px solid #666;
16
+ width: 24px;
17
+ height: 24px;
18
+ min-width: 24px;
19
+ min-height: 24px;
20
+ border: 1px solid #666;
19
21
  text-align: center;
20
22
  font-size: 14px;
21
- }
22
- }
23
-
24
- @container content (min-width: 700px) {
25
- .cdc-open-viz-module .annotation__mobile-label {
26
- display: none;
27
- }
28
- .cdc-open-viz-module .annotation__desktop-label {
29
- display: block;
23
+ box-sizing: border-box;
30
24
  }
31
25
  }