We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aa51c1 commit c6ee205Copy full SHA for c6ee205
src/core/chart-api/chart-extra-context.tsx
@@ -102,7 +102,7 @@ function computeDerivedState(chart: Highcharts.Chart): ChartExtraContext.Derived
102
for (const d of s.data) {
103
// Points with y=null represent the absence of value, there is no need to include them and those
104
// should have no impact on computed rects or navigation.
105
- if (d.visible && d.y !== null) {
+ if (d?.visible && d.y !== null) {
106
seriesX.add(d.x);
107
allXSet.add(d.x);
108
addPoint(d);
0 commit comments