[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ISeries.PictureType

PictureType Property

PictureType

Gets or sets the way pictures are displayed on a column or bar picture chart.

Use this property to determine whether pictures in the series are stretched, stacked, or stacked according to a specified unit.

Declaration
DrawingPictureType PictureType { get; set; }
Property PictureType As DrawingPictureType
Examples
worksheet.Range["A1:A4"].Value = new object[,] {{10}, {20}, {30}, {40}};
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
chart.SeriesCollection.Add(worksheet.Range["A1:A4"]);
ISeries series = chart.SeriesCollection[0];
series.PictureType = DrawingPictureType.StackScale;
DrawingPictureType pictureType = series.PictureType;