Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.01 KB

Excel.ChartGroup.DownBars.md

File metadata and controls

40 lines (26 loc) · 1.01 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.DownBars property (Excel)
vbaxl10.chm568075
vbaxl10.chm568075
Excel.ChartGroup.DownBars
dd8ae50c-0105-9645-467d-7eb07b56c95e
04/20/2019
medium

ChartGroup.DownBars property (Excel)

Returns a DownBars object that represents the down bars on a line chart. Applies only to line charts. Read-only.

Syntax

expression.DownBars

expression A variable that represents a ChartGroup object.

Example

This example turns on up bars and down bars for chart group one on Chart1 and then sets their colors. The example should be run on a 2D line chart that has two series that cross each other 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]