I have a chart that uses both regular and custom axes on all four sides. When there is data for TopAxis, the Chart Title positions correctly, and makes space to show the Top Axis Title and Labels. However, when there is data only for the top custom axis, the chart title overwrites the custom axis title and labels - see the two attached images. When I try to move the Chart Title up, it goes off the top of the chart.
How do I get the Chart Title to recognise the custom axis, and automatically adjust the chart position to allow the Chart Title to be correctly placed.
Thanks in advance
Errol
Graph Title position with top custom axis
Graph Title position with top custom axis
- Attachments
-
- TitleIncorrect.jpg (134.06 KiB) Viewed 4984 times
-
- TitleCorrect.jpg (157.74 KiB) Viewed 4984 times
Re: Graph Title position with top custom axis
Hello,
This happens because only the default axes "inflate" the chart rectangle.
Here a workaround:
This happens because only the default axes "inflate" the chart rectangle.
Here a workaround:
Code: Select all
if Chart1.Axes.Top.Visible then
Chart1.MarginTop:=16
else
Chart1.MarginTop:=66;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |