Skip to content

Latest commit

 

History

History
59 lines (35 loc) · 1.18 KB

Project.chart.walls.md

File metadata and controls

59 lines (35 loc) · 1.18 KB
title ms.service ms.assetid ms.date ms.localizationpriority
Chart.Walls property (Project)
project-server
8404e5cb-8da2-49b4-c49a-488d67457681
06/08/2017
medium

Chart.Walls property (Project)

Gets an Office.IMsoWalls object that represents the walls of a 3D chart. Read-only IMsoWalls.

Syntax

expression.Walls

expression A variable that represents a Chart object.

Parameters

Name Required/Optional Data type Description
fBackWall Optional Boolean Default value = True. The fBackWall parameter has no effect in Project.

Example

The following example sets the wall borders of the 3D chart to a red line that is three points wide.

Sub FormatWalls()
    Dim chartShape As Shape
    Dim reportName As String
    
    reportName = "Simple 3D chart"
    Set chartShape = ActiveProject.Reports(reportName).Shapes(1)
    
    With chartShape.Chart.Walls.Border
        .Weight = 3
        .Color = &HFF
    End With
End Sub

Property value

IMSOWALLS

See also

Chart Object

[!includeSupport and feedback]