Skip to content

Commit

Permalink
Merge pull request #4575 from rosco54/Issue_4561
Browse files Browse the repository at this point in the history
Fix for issue 4561
  • Loading branch information
junedchhipa committed Jul 20, 2024
2 parents 9b74258 + 915997c commit b075c08
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/modules/ZoomPanSelection.js
Original file line number Diff line number Diff line change
Expand Up @@ -559,16 +559,14 @@ export default class ZoomPanSelection extends Toolbar {

w.config.yaxis.forEach((yaxe, index) => {
// We can use the index of any series referenced by the Yaxis
// because they will all return the same value.
if (w.globals.seriesYAxisMap[index].length > 0) {
let seriesIndex = w.globals.seriesYAxisMap[index][0]
yHighestValue.push(
w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[seriesIndex] * me.startY
)
yLowestValue.push(
w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[seriesIndex] * me.endY
)
}
// because they will all return the same value, so we choose the first.
let seriesIndex = w.globals.seriesYAxisMap[index][0]
yHighestValue.push(
w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[seriesIndex] * me.startY
)
yLowestValue.push(
w.globals.yAxisScale[index].niceMax - xyRatios.yRatio[seriesIndex] * me.endY
)
})

if (
Expand Down

0 comments on commit b075c08

Please sign in to comment.