Chart.Rotation property (PowerPoint)
Returns or sets the rotation, in degrees, of the 3D chart view (the rotation of the plot area around the z-axis). Read/write Variant.
Syntax
expression.Rotation
expression A variable that represents a Chart object.
Remarks
The value of this property must be from 0 through 360, except for 3D bar charts, where the value must be from 0 through 44. The default value is 20. This property applies only to 3D charts.
Rotations are always rounded to the nearest integer.
Example
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
The following example sets the rotation of the first chart in the active document to 30 degrees. You should run the example on a 3D chart.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
.Chart.Rotation = 30
End If
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.