Sachin noticed this on Linux and asked me to post it. I get the same effect on Windows.
Version: 13.0-alpha-11
Build #: 30634
Build Date: 2012-Dec-15 11:28:22 AM
1. execute the script below
2. make a 3d column chart after executing the script below. ( for category pick only "category", for series select s1, s2, s3 and s4 )
3. click the "fit to image" to enable it.
4. click the "fit to image" button again to disable it.
5. Zoom in enough to see the chart. The Value Axis Labels overlap one another.
see attached GIF animation
select 1 as category, 3000 as s1, 1200 as s2, 1000 as s3, 500 as s4
union
select 2 as category, 4000 as s1, 300 as s2, 1500 as s3, 1000 as s4
union
select 3 as category, 1000 as s1, 800 as s2, 1200 as s3, 600 as s4
union
select 4 as category, 4000 as s1, 1200 as s2, 1500 as s3, 700 as s4
union
select 5 as category, 1000 as s1, 800 as s2, 900 as s3, 300 as s4
union
select 6 as category, 5000 as s1, 1000 as s2, 1300 as s3, 500 as s4
union
select 7 as category, 1300 as s1, 1100 as s2, 700 as s3, 600 as s4
GO
The label sizes were based on the width/height & aspect ratio, which were altered when fit was modifying the public width/height properties. By fixing the fit behavior, the labels remain correctly sized.