Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.14 KB

Word.ChartGroup.UpBars.md

File metadata and controls

54 lines (34 loc) · 1.14 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.UpBars property (Word)
vbawd10.chm263454751
vbawd10.chm263454751
Word.ChartGroup.UpBars
8581ad5f-94a1-0e12-3880-14ce2a7e9f03
06/08/2017
medium

ChartGroup.UpBars property (Word)

Returns the up bars on a line chart. Read-only UpBars.

Syntax

expression.UpBars

expression A variable that represents a ChartGroup object.

Remarks

This property applies only to line charts.

Example

The following example enables up and down bars for chart group one of the first chart in the active document, and then sets their colors. You should run the example on a 2D line chart that contains two series that cross each other at one or more data points.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.ChartGroups(1) 
 .HasUpDownBars = True 
 .DownBars.Interior.ColorIndex = 3 
 .UpBars.Interior.ColorIndex = 5 
 End With 
 End If 
End With

See also

ChartGroup Object

[!includeSupport and feedback]