Skip to content

Commit

Permalink
bugfix/#4767
Browse files Browse the repository at this point in the history
  • Loading branch information
cuobiezi committed Nov 12, 2024
1 parent 744f26b commit 874c238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charts/Line.js
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ class Line {
}
}

if (typeof w.globals.seriesX[realIndex][j + 1] === 'undefined') {
if (typeof w.globals.seriesX[realIndex][j + 1] !== 'undefined') {
// push current X
xArrj.push(x)
}
Expand Down

0 comments on commit 874c238

Please sign in to comment.