DownBars Property

Applies To

ChartGroup Object.

Description

Accessor. Returns a DownBars object that represents the down bars on a line chart. Applies only to line charts. Read-only.

See Also

HasUpDownBars Property, UpBars Property.

Example

This example turns on up and down bars for chart group one in Chart1 and then sets their colors. The example should be run on a 2-D line chart having 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