Point.SecondaryPlot property (PowerPoint)

True if the point is in the secondary section of either a pie-of-pie chart or a bar-of-pie chart. Read/write Boolean.

Syntax

expression.SecondaryPlot

expression A variable that represents a 'Point' object.

Remarks

This property applies only to points on pie-of-pie charts or bar-of-pie charts.

Example

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

The following example moves point four to the secondary section of the chart. You must run this example on either a pie-of-pie chart or a bar-of-pie chart.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        With .Chart.SeriesCollection(1)

            .Points(4).SecondaryPlot = True

        End With

    End If

End With

See also

Point Object

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.