Why is the scaling function being applied to the wrong axis? Here, the log ticks are on the Y axis, but they should be on the X axis:
BarChart[{0.1, 1, 10, 100}, ChartElementFunction -> "GlassRectangle",
ChartStyle -> 45, ScalingFunctions -> "Log", BarOrigin -> Left,
Frame -> True]


ScalingFunctionsis affected byFrame -> True(possible bug). If you removeFrame -> True, then the log ticks are applied to the x axis as expected. – rm -rf♦ Oct 17 '12 at 18:03