Pie chart

L

Lindylou

how can I change the circumference of the pie in the chart? sometimes is is
a lot bigger than others and looks funny when two are compared on the same
page.
 
L

Luke M

Circumference is determined by the plot area size.

In VB, you could control this like so:

ActiveChart.PlotArea.Select
Selection.Width = 115
Selection.Height = 115
 
Top