I'm currently working on a stacked bar chart in my CodePen project found here: https://codepen.io/a166617/pen/qBXvzQd
However, I am facing an issue where the graph is not aligned properly with the x-axis and y-axis lines. The barchart seems to be sliding away to the right. Can anyone provide insights or suggestions on how to correctly position the barchart on the x-axis and y-axis of the graph?
<g class="grid x-grid" id="xGrid">
<line x1="90" x2="90" y1="5" y2="371"></line>
</g>
<g class="grid y-grid" id="yGrid">
<line x1="90" x2="705" y1="370" y2="370"></line>
</g>
The code snippet above should theoretically place the graph on the x-axis and y-axis lines, but for some reason, it's not functioning as expected. Any advice or assistance on identifying the issue would be greatly appreciated.