Skip to content

Latest commit

 

History

History
54 lines (31 loc) · 1.22 KB

Project.chart.rightangleaxes.md

File metadata and controls

54 lines (31 loc) · 1.22 KB
title ms.service ms.assetid ms.date ms.localizationpriority
Chart.RightAngleAxes property (Project)
project-server
51e8cde1-53c7-90ff-b5c7-72a091461f6b
06/08/2017
medium

Chart.RightAngleAxes property (Project)

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.

Syntax

expression.RightAngleAxes

expression A variable that represents a Chart object.

Remarks

If the RightAngleAxes property is True, the Perspective property is ignored.

Example

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

Property value

VARIANT

See also

Chart Object AutoScaling Property

[!includeSupport and feedback]