[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.Perspective

Perspective Property

Perspective

Gets or sets the perspective for the 3-D chart view.

The returned value is between 0 and 100. This property is ignored if RightAngleAxes returns true.

Declaration
int Perspective { get; set; }
Property Perspective As Integer
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered3D, 20, 20, 300, 200).Chart;
chart.RightAngleAxes = false;
chart.Perspective = 30;
int perspective = chart.Perspective;