[]
Gets or sets whether the point has a three-dimensional appearance.
Use this property to determine whether an individual data point is displayed with a three-dimensional effect in a bubble chart.
bool Has3DEffect { get; set; }
Property Has3DEffect As Boolean
worksheet.Range["A1:C4"].Value = new object[,] {{"X", "Y", "Size"}, {1, 10, 6}, {2, 14, 8}, {3, 9, 5}};
IChart chart = worksheet.Shapes.AddChart(ChartType.Bubble, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:C4"]);
IPoint point = chart.SeriesCollection[0].Points[1];
point.Has3DEffect = true;
bool has3DEffect = point.Has3DEffect;