Chart.ChartGroups Method (PowerPoint)
Returns an object that represents either a single chart group or a collection of all the chart groups in the chart.
Version Information
Version Added: PowerPoint 2007
Syntax
expression .ChartGroups(Index)
expression A variable that represents a Chart object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Index |
Optional |
Variant |
The chart group number. If specified, a single ChartGroup object is returned. If omitted, a ChartGroups object is returned which contains a collection of every ChartGroup object for that chart. |
Example
This example turns on up and down bars for the first chart group of the first chart, 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 ActivePresentation.Slides(1).Shapes(1).Chart.ChartGroups(1)
.HasUpDownBars = True
.DownBars.Interior.ColorIndex = 3
.UpBars.Interior.ColorIndex = 5
End With