Share via


Point.SecondaryPlot Property

Excel Developer Reference

True if the point is in the secondary section of either a pie of pie chart or a bar of pie chart. Applies only to points on pie of pie charts or bar of pie charts. Read/write Boolean.

Syntax

expression.SecondaryPlot

expression   A variable that represents a Point object.

Example

This example must be run on either a pie of pie chart or a bar of pie chart. The example moves point four to the secondary section of the chart.

Visual Basic for Applications
  With Worksheets(1).ChartObjects(1).Chart.SeriesCollection(1)
    .Points(4).SecondaryPlot = True
End With

See Also