Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
Version Information
Version Added: Word 2007
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
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