Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.34 KB

Word.ChartGroup.HasSeriesLines.md

File metadata and controls

58 lines (37 loc) · 1.34 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.HasSeriesLines property (Word)
vbawd10.chm263454736
vbawd10.chm263454736
Word.ChartGroup.HasSeriesLines
56e85d95-4743-4afd-5bdf-d00065608708
06/08/2017
medium

ChartGroup.HasSeriesLines property (Word)

True if a stacked column chart or bar chart has series lines or if a pie-of-pie chart or bar-of-pie chart has connector lines between the two sections. Read/write Boolean.

Syntax

expression.HasSeriesLines

expression A variable that represents a ChartGroup object.

Remarks

This property applies only to 2D stacked bar, 2D stacked column, pie-of-pie, or bar-of-pie charts.

Example

The following example enables series lines for chart group one of the first chart in the active document and then sets their line style, weight, and color. You should run the example on a 2D stacked column chart that has two or more series.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.ChartGroups(1) 
 .HasSeriesLines = True 
 With .SeriesLines.Border 
 .LineStyle = xlThin 
 .Weight = xlMedium 
 .ColorIndex = 3 
 End With 
 End With 
 End If 
End With 

See also

ChartGroup Object

[!includeSupport and feedback]