ChartGroup.UpBars Property (Word)
Returns the up bars on a line chart. Read-only UpBars.
Version Information
Version Added: Word 2007
Syntax
expression .UpBars
expression A variable that represents a ChartGroup object.
Remarks
This property applies only to line charts.
Example
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 2-D 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