title | ms.service | ms.assetid | ms.date | ms.localizationpriority |
---|---|---|---|---|
Chart.RightAngleAxes property (Project) |
project-server |
51e8cde1-53c7-90ff-b5c7-72a091461f6b |
06/08/2017 |
medium |
True if the chart axes are at right angles, independent of chart rotation or elevation. Applies only to 3D line, 3D column, and 3D bar charts. Read/write Boolean.
expression.RightAngleAxes
expression A variable that represents a Chart object.
If the RightAngleAxes property is True, the Perspective property is ignored.
The following example sets the chart axes to intersect at right angles. The example should be run on a 3D chart.
Sub SetRightAngleAxes()
Dim chartShape As Shape
Dim reportName As String
reportName = "Simple 3D chart"
Set chartShape = ActiveProject.Reports(reportName).Shapes(1)
chartShape.Chart.RightAngleAxes = True
End Sub
VARIANT
Chart Object AutoScaling Property
[!includeSupport and feedback]