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.

Return Value
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 2-D line chart containing two series that intersect at one or more data points.

Visual Basic for Applications
With Charts("Chart1").ChartGroups(1) .HasUpDownBars = True .DownBars.Interior.ColorIndex = 3 .UpBars.Interior.ColorIndex = 5 End With
Change certain properties of all chart groups on chart? chart groups Chart Groups Method ChartGroup Method ChartGroups chartgroups method Manipulate a specific chart group? Return object representing a single chartgroup on a graph?

See also: