[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChartFormat.ThreeD

ThreeD Property

ThreeD

Gets the IThreeDFormat object for the chart element.

Use the returned IThreeDFormat object to access and modify the 3-D formatting properties of the specified chart element, such as rotation, perspective, and visibility.

Declaration
IThreeDFormat ThreeD { get; }
ReadOnly Property ThreeD As IThreeDFormat
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 360, 220).Chart;
IChartFormat format = chart.ChartArea.Format;
IThreeDFormat threeD = format.ThreeD;
threeD.RotationX = 20;