[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IPoint.SecondaryPlot

SecondaryPlot Property

SecondaryPlot

Gets or sets whether the point is in the secondary section of a pie-of-pie or bar-of-pie chart.

This property applies only to points in the pie or bar section of pie-of-pie and bar-of-pie charts.

Declaration
bool SecondaryPlot { get; set; }
Property SecondaryPlot As Boolean
Examples
worksheet.Range["A1:B4"].Value = new object[,] {{"Category", "Value"}, {"A", 10}, {"B", 20}, {"C", 30}};
IChart chart = worksheet.Shapes.AddChart(ChartType.BarOfPie, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B4"]);
IPoint point = chart.SeriesCollection[0].Points[0];
bool secondaryPlot = point.SecondaryPlot;