Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #504 from emattias/bug-cursorContainerVerticalPadd…
Browse files Browse the repository at this point in the history
…ingOffset

Use padding bottom to calculate vertical cursor offset not padding le…
  • Loading branch information
boygirl authored Jul 31, 2017
2 parents 76ed67e + 97f5d09 commit 9322555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/containers/victory-cursor-container.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const cursorContainerMixin = (base) => class VictoryCursorContainer exten
x1: cursorCoordinates.x,
x2: cursorCoordinates.x,
y1: padding.top,
y2: (height - padding.left)
y2: (height - padding.bottom)
}));
}
if (dimension === "y" || dimension === undefined) {
Expand Down

0 comments on commit 9322555

Please sign in to comment.