![]() |
How can I "align middle" the legend and plot area?
I'd like to vertically center align the plot area and the legend but can't
select them at the same time. Is it possible to do this or do I have to eyeball it? |
Answer: How can I "align middle" the legend and plot area?
Yes, it is possible to align the legend and plot area in the middle of your Excel chart. Here's how you can do it:
Your legend and plot area should now be vertically centered in your Excel chart. |
How can I "align middle" the legend and plot area?
Hi,
You can not select both the plotarea and the legend in order to align them. If you use Right click Chart Options Legend Bottom. The legend will align horizontally with the middle of the plot area. You will have to eyeball the vertical alignment and the same for the plot area alignment. Or you could use code. Uncomment line if you want the plotarea centered in chartobject. Place code in a standard code module. Sub x() With ActiveChart ' center align plotarea in chart object ' .PlotArea.Left = (.ChartArea.Width - .PlotArea.Width) / 2 ' .PlotArea.Top = (.ChartArea.Height - .PlotArea.Height) / 2 .Legend.Left = .PlotArea.InsideLeft + ((.PlotArea.InsideWidth - ..Legend.Width) / 2) End With End Sub Cheers Andy -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info "StonyCreeker" wrote in message ... I'd like to vertically center align the plot area and the legend but can't select them at the same time. Is it possible to do this or do I have to eyeball it? |
All times are GMT +1. The time now is 10:38 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com