That will depend on why you have a scroll bar on the left axis of a bar chart.
I will assume a simple situation, and correct me if this assumption is wrong. In my setup I have three bar charts using the same hierarchy, and each is using a different measure. I change the Horizontal Zooming for each of them to have Maximum Visible Categories of 5, which means I have a scroll bar on the bottom axis to be able to see all 10 categories. I then use the Horizontal Bars option, which flips the axes and I now have the same scroll bar on the left side. It's important to note here that the scroll bar is still on the X axis, which is now positioned on the left.
The simplest solution in this situation is to assign the same X axis viewport settings instance to the three charts. With nothing selected on the dashboard, open the Properties panel and add a script to the Ready action. Use the following code for the script:
chart1.control.xViewport = chart2.control.xViewport = chart3.control.xViewport;
Hope this works.