Chart.SideWall property (Project)

Gets an Office.IMsoWalls object that allows the user to individually format the side wall of a 3D chart. Read-only IMsoWalls.

Syntax

expression.SideWall

expression A variable that represents a Chart object.

Example

The following example colors the side wall of the 3D chart blue. In Project, red is the last byte of a hexadecimal value.

Sub FormatSideWall()
    Dim chartShape As Shape
    Dim reportName As String
    
    reportName = "Simple 3D chart"
    Set chartShape = ActiveProject.Reports(reportName).Shapes(1)
    
    chartShape.Chart.SideWall.Fill.ForeColor.RGB = &HFF0000
End Sub

Property value

IMSOWALLS

See also

Chart Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.