[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.HeightPercent

HeightPercent Property

HeightPercent

Gets or sets the height of a 3-D chart as a percentage of the chart width.

The returned value is between 5 and 500 percent.

Declaration
int HeightPercent { get; set; }
Property HeightPercent As Integer
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered3D, 20, 20, 300, 200).Chart;
chart.HeightPercent = 150;
int heightPercent = chart.HeightPercent;