title | keywords | f1_keywords | ms.service | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|---|
Chart.SideWall property (Project) |
vbapj.chm131633 |
|
project-server |
d8b74dc2-7a22-1064-972d-876396414e2c |
06/08/2017 |
medium |
Gets an Office.IMsoWalls object that allows the user to individually format the side wall of a 3D chart. Read-only IMsoWalls.
expression.SideWall
expression A variable that represents a Chart object.
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
IMSOWALLS
[!includeSupport and feedback]