[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IWall

IWall Interface

Represents the walls of a 3-D chart.

A wall is the plane behind or beside a 3-D chart. Use this interface to access the wall's IChartFormat and to control its thickness for walls returned by BackWall or SideWall.

Namespace: GrapeCity.Documents.Excel.Drawing
Assembly: DS.Documents.Excel.dll
Syntax
public interface IWall
Public Interface IWall
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"A", 1},
    {"B", 2}
};
IShape shape = worksheet.Shapes.AddChart(ChartType.Column3D, 10, 10, 250, 250);
shape.Chart.SeriesCollection.Add(worksheet.Range["A1:B3"], RowCol.Columns, true, true);
IWall wall = shape.Chart.SideWall;
wall.Thickness = 20;
wall.Format.Fill.Color.RGB = Color.Red;

Properties

Name Description
Format

Gets the chart format of the wall.

The returned IChartFormat object provides access to the wall's fill and line formatting for a 3-D chart.

Parent

Gets the parent IChart that contains this wall.

The returned chart is the 3-D chart that owns this wall, such as the back wall or side wall.

Thickness

Gets or sets the thickness of the wall.

Use this property to read or change the current thickness setting of a wall in a 3-D chart, such as the back wall or side wall.