Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.3 KB

Excel.Chart.ChartGroups.md

File metadata and controls

52 lines (32 loc) · 1.3 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Chart.ChartGroups method (Excel)
vbaxl10.chm149087
vbaxl10.chm149087
Excel.Chart.ChartGroups
dffa4fc3-b2db-eb50-b309-95e99972525f
04/16/2019
medium

Chart.ChartGroups method (Excel)

Returns an object that represents either a single chart group (a ChartGroup object) or a collection of all the chart groups in the chart (a ChartGroups object). The returned collection includes every type of group.

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

With Charts("Chart1").ChartGroups(1) 
 .HasUpDownBars = True 
 .DownBars.Interior.ColorIndex = 3 
 .UpBars.Interior.ColorIndex = 5 
End With

[!includeSupport and feedback]