ChartGroups Method
Applies To
Chart object.
Description
Returns an object that represents either a single chart group (a ChartGroup object, Syntax 1) or a collection of all the chart groups in the chart (a ChartGroups object, Syntax 2). The returned collection includes every type of group.
Syntax 1
expression.ChartGroups(Index)
Syntax 2
expression.ChartGroups
expression Required. An expression that returns a Chart object.
Index Optional Variant. The chart group number.
See Also
AreaGroups method, BarGroups method, ColumnGroups method, DoughnutGroups method, LineGroups method, PieGroups method.
Example
This example turns on up and down bars for chart group one and then sets their colors. The example should be run on a 2-D line chart containing two series that intersect at one or more data points.
With myChart.ChartGroups(1)
.HasUpDownBars = True
.DownBars.Interior.ColorIndex = 3
.UpBars.Interior.ColorIndex = 5
End With