[]
Gets the IChartGroup object that represents the pie chart group on a 3-D chart.
Use this property to access group-level settings for a chart created with Pie3D.
IChartGroup Pie3DGroup { get; }
ReadOnly Property Pie3DGroup As IChartGroup
worksheet.Range["A1:B4"].Value = new object[,] {
{"Category", "Sales"}, {"A", 35}, {"B", 25}, {"C", 40}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.Pie3D, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B4"]);
IChartGroup pie3DGroup = chart.Pie3DGroup;