[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.Rotation

Rotation Property

Rotation

Gets or sets the rotation of the 3-D chart view.

This property specifies the rotation of the plot area around the z-axis in degrees. The default value is 20. Applies only to 3-D charts.

Declaration
double Rotation { get; set; }
Property Rotation As Double
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered3D, 20, 20, 300, 200).Chart;
chart.Rotation = 30;
double rotation = chart.Rotation;