Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.13 KB

Word.Series.PictureUnit2.md

File metadata and controls

48 lines (31 loc) · 1.13 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Series.PictureUnit2 property (Word)
vbawd10.chm123734617
vbawd10.chm123734617
Word.Series.PictureUnit2
461c860f-ad4d-394a-508c-a53ef6b00bdb
06/08/2017
medium

Series.PictureUnit2 property (Word)

Returns or sets the unit for each picture on the chart if the PictureType property is set to xlStackScale; otherwise, this property is ignored. Read/write Double.

Syntax

expression.PictureUnit2

expression A variable that represents a 'Series' object.

Example

The following example sets series one for the first chart in the active document to stack pictures and uses each picture to represent five units. You should run the example on a 2D column chart that has picture data markers.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 With .Chart.SeriesCollection(1) 
 .PictureType = xlScale 
 .PictureUnit2 = 5 
 End With 
 End If 
End With

See also

Series Object

[!includeSupport and feedback]