Skip to content

Commit

Permalink
Merge pull request apexcharts#4321 from rosco54/Issue_4314
Browse files Browse the repository at this point in the history
Fix misalignment of chart to axis boundary in reverse bar charts.
  • Loading branch information
junedchhipa committed Mar 12, 2024
2 parents e5bf029 + f7bedbc commit e76ecb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/axes/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ class Grid {

let xAxis = new XAxis(this.ctx)
xAxis.drawXaxisTicks(x1, 0, w.globals.dom.elGraphical)
x1 = x1 + w.globals.gridWidth / xCount + 0.3
x1 = x1 + w.globals.gridWidth / xCount
x2 = x1
}
}
Expand Down

0 comments on commit e76ecb6

Please sign in to comment.