title | ms.service | ms.assetid | ms.date | ms.localizationpriority |
---|---|---|---|---|
Chart.Floor property (Project) |
project-server |
ae1f3f2b-e49c-63d1-f487-5d031fea20e5 |
06/08/2017 |
medium |
Gets an Office.IMsoFloor object that represents the floor of a 3D chart. Read-only IMsoFloor.
expression.Floor
expression A variable that represents a Chart object.
The Floor property fails on 2D charts.
The following example sets the floor color of the chart to blue. The example should be run on a 3D chart.
Sub SetFloorColor()
Dim chartShape As Shape
Dim reportName As String
reportName = "Simple 3D chart"
Set chartShape = ActiveProject.Reports(reportName).Shapes(1)
chartShape.Chart.Floor.Interior.ColorIndex = 5
End Sub
IMSOFLOOR
[!includeSupport and feedback]