Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 972 Bytes

Excel.HasUpDownBars.md

File metadata and controls

36 lines (26 loc) · 972 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
HasUpDownBars property (Excel Graph)
vbagr10.chm5207518
vbagr10.chm5207518
Excel.HasUpDownBars
c3785986-a013-727c-95e6-56a732b8b40f
04/11/2019
medium

HasUpDownBars property (Excel Graph)

True if the specified line chart has up and down bars. Applies only to line charts. Read/write Boolean.

Syntax

expression.HasUpDownBars

expression Required. An expression that returns one of the objects in the Applies To list.

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

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

[!includeSupport and feedback]