Posted to microsoft.public.excel.programming
|
|
How do I get VBA to generate a chart with square axes?
Try this:
'---------
Sub SquareChart()
With ActiveSheet.Shapes("Graphique 1")
.Height = .Width
End With
End Sub
'---------
Regards,
--
AP
"patrick" a écrit dans le message de
news: ...
I have generated a chart using Excel data but wish to ensure that the chart
is square (i.e. the x and the y axes are to the same scale). an anyone
help
please?
|