ChartGroup.HasUpDownBars property (PowerPoint)
True if a line chart has up and down bars. Read/write Boolean.
expression.HasUpDownBars
expression A variable that represents a ChartGroup object.
This property applies only to line charts.
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
The following example enables up and down bars for chart group one of the first chart in the active document and then sets their colors. You should run the example on a 2D line chart that contains two series that cross each other at one or more data points.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
With .Chart.ChartGroups(1)
.HasUpDownBars = True
.DownBars.Interior.ColorIndex = 3
.UpBars.Interior.ColorIndex = 5
End With
End If
End With
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.