|
From: Benjamin R. <ben...@ou...> - 2012-09-20 00:12:11
|
On Wednesday, September 19, 2012, Adam Davis wrote: > If I do: > > bar(range(3), [1,0,2]) > > ... then I get 2 bars of a suitable width for a 3 bar chart, with a gap in > between where the middle bar would be if not equal to 0. Yet if I do: > > bar(range(3), [1,2,0]) > > ... then I get two bars of equal width. Is there a way to preserve the > space for the missing bar? > This is an autoscaling issue, I think. Your best bet is to explicitly set the x limits yourself. Cheers, Ben Root |