change diameter of a pie chart in excel

L

Lisa

I am trying to make the sizes of all pie charts the same. I have made all
the boxes the same size by using format - object and making widths and
heights the same, however when this is done the diameter of each pie chart is
different. Any ideas to correct this. Thanks
 
A

Andy Pope

Hi Lisa,

To change the diameter you need to adjust the Plotarea dimensions.
For consistent setting this is best done with vba code.

The following code snippet will alter the position and width (diameter).

With ActiveChart.PlotArea
.Left = 20
.Top = 20
.Width = 60
End With

Cheers
Andy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top