[]
Gets or sets the explosion value for a pie-chart or doughnut-chart slice.
Returns 0 if there is no explosion and the tip of the slice is in the center of the pie.
int Explosion { get; set; }
Property Explosion As Integer
worksheet.Range["A1:B4"].Value = new object[,] {{"Category", "Value"}, {"A", 30}, {"B", 20}, {"C", 50}};
IChart chart = worksheet.Shapes.AddChart(ChartType.Pie, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B4"]);
IPoint point = chart.SeriesCollection[0].Points[1];
int explosion = point.Explosion;