PictureUnit Property

Applies To

LegendKey object, Point object, Series object, Walls object.

Description

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

See Also

PictureType property.

Example

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

With myChart.SeriesCollection(1)
    .PictureType = xlScale
    .PictureUnit = 5
End With