[]
Gets or sets the thickness of the floor.
Use this property to read the current thickness setting of the floor in a 3-D chart.
int Thickness { get; set; }
Property Thickness As Integer
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;
floor.Thickness = 120;
int thickness = floor.Thickness;