Skip to content

Files

Latest commit

 

History

History
39 lines (25 loc) · 1002 Bytes

Excel.Series.PictureUnit2.md

File metadata and controls

39 lines (25 loc) · 1002 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Series.PictureUnit2 property (Excel)
vbaxl10.chm578123
vbaxl10.chm578123
Excel.Series.PictureUnit2
6c29fd60-2e42-3f7a-1fc0-67309ea75a3a
05/11/2019
medium

Series.PictureUnit2 property (Excel)

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

Syntax

expression.PictureUnit2

expression A variable that represents a Series object.

Example

This example sets series one on Chart1 to stack pictures, and uses each picture to represent five units. The example should be run on a 2D column chart with picture data markers.

With Charts("Chart1").SeriesCollection(1) 
 .PictureType = xlScale 
 .PictureUnit2 = 5 
End With

[!includeSupport and feedback]