Skip to content

Commit

Permalink
Merge pull request #437 from Kotlin/axis_position_fix
Browse files Browse the repository at this point in the history
fix axis position wrap
  • Loading branch information
AndreiKingsley authored Sep 27, 2024
2 parents 0ef30dd + 72ebc3e commit 44b7c69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ internal fun Scale.wrap(
when (it) {
AxisPosition.DEFAULT -> null
AxisPosition.OPPOSITE -> when (aes) {
X -> "right"
Y -> "top"
X -> "top"
Y -> "right"
else -> null
}

Expand Down

0 comments on commit 44b7c69

Please sign in to comment.