[]
Represents the floor of a 3-D chart.
Use this interface to format the floor area of a 3-D chart and to control its thickness. The floor exposes an IChartFormat object for line and fill formatting and belongs to a parent IChart.
public interface IFloor
Public Interface IFloor
IShape shape = worksheet.Shapes.AddChart(ChartType.Column3D, 200, 50, 300, 300);
worksheet.Range["A1:D3"].Value = new object[,] {
{null, "S1", "S2", "S3"}, {"Item1", 10, 25, 15}, {"Item2", 20, 30, 18}
};
shape.Chart.SeriesCollection.Add(worksheet.Range["A1:D3"], RowCol.Columns, true, true);
IFloor floor = shape.Chart.Floor;
floor.Thickness = 20;
| Name | Description |
|---|---|
| Format | Gets the chart format of the floor. |
| Parent | Gets the parent IChart that contains this floor. Use this property to access the chart that owns the floor of a 3-D chart. |
| Thickness | 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. |