[]
Gets the parent IChart that contains this floor.
Use this property to access the chart that owns the floor of a 3-D chart.
IChart Parent { get; }
ReadOnly Property Parent As IChart
worksheet.Range["A1:B3"].Value = new object[,] {
{"Name", "Value"},
{"Test 1", 10},
{"Test 2", 20}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.Column3D, 20, 20, 360, 220).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:B3"], RowCol.Columns, true, true);
IFloor floor = chart.Floor;
IChart parentChart = floor.Parent;