Skip to content

Commit

Permalink
Merge pull request #4310 from rosco54/Hide_axis_bug_fix
Browse files Browse the repository at this point in the history
Y axis hiding bug fix
  • Loading branch information
junedchhipa committed Mar 8, 2024
2 parents 0b95446 + e4aca64 commit cd6c32b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Scales.js
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ export default class Scales {
if (unassignedSeriesIndices) {
let si = unassignedSeriesIndices[0]
unassignedSeriesIndices.shift()
axisSeriesMap[lastUnassignedYAxis].push([si])
axisSeriesMap[lastUnassignedYAxis].push(si)
seriesYAxisReverseMap[si] = lastUnassignedYAxis
} else {
break
Expand Down

0 comments on commit cd6c32b

Please sign in to comment.