From: george12thd P on
Ok thanks for all the help but I finally found the code that shifts the x-axis in a bar graph.
You simply grab the handle of the graph:
bar_handle = bar(<some array>);
and you change the basevalue of this graph:
set(bar_handle,'BaseValue',mean(<some array>));

;)