ChartGroup.HasUpDownBars property (Excel)

True if a line chart has up and down bars. Applies only to line charts. Read/write Boolean.

Syntax

expression.HasUpDownBars

expression A variable that represents a ChartGroup object.

Example

This example turns on up and down bars for chart group one on Chart1 and then sets their colors. The example should be run on a 2D line chart containing two series that cross each other at one or more data points.

With Charts("Chart1").ChartGroups(1) 
 .HasUpDownBars = True 
 .DownBars.Interior.ColorIndex = 3 
 .UpBars.Interior.ColorIndex = 5 
End With

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.