Share via


Axis.ReversePlotOrder Property

True if Microsoft Word plots data points from last to first. Read/write Boolean.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property ReversePlotOrder As Boolean
    Get
    Set
'Usage
Dim instance As Axis
Dim value As Boolean

value = instance.ReversePlotOrder

instance.ReversePlotOrder = value
bool ReversePlotOrder { get; set; }

Property Value

Type: System.Boolean

Remarks

This property cannot be used on radar charts.

Examples

This example plots data points from last to first on the value axis for the first chart in the active document.

With ActivePresentation.Slides(1).Shapes(1)

    If .HasChart Then

        .Chart.Axes(xlValue).ReversePlotOrder= True

    End If

End With

See Also

Reference

Axis Interface

Axis Members

Microsoft.Office.Interop.PowerPoint Namespace