Version

ColumnChart3D Property

Returns an Appearance object that you can use to access all the formatting properties of an 3-D Column Chart.
Syntax
'Declaration
 
Public Property ColumnChart3D As ColumnChart3DAppearance
public ColumnChart3DAppearance ColumnChart3D {get; set;}
Example
'see ChartText Object
'Hook in a data source and DataBind it to the UltraChart
ultraChart1.DataSource = GetData()
ultraChart1.DataBind()
'Set the Chart type to ColumnChart3D
ultraChart1.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.ColumnChart3D
'Set ColumnChart3D specific properties via the ColumnChart3D property
ultraChart1.ColumnChart3D.ColumnSpacing = 5
ultraChart1.ColumnChart3D.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot
// see ChartText Object
// Hook in a data source and DataBind it to the UltraChart
ultraChart1.DataSource = GetData();
ultraChart1.DataBind();
// Set the Chart type to ColumnChart3D
ultraChart1.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.ColumnChart3D;
// Set ColumnChart3D specific properties via the ColumnChart3D property
ultraChart1.ColumnChart3D.ColumnSpacing = 5;
ultraChart1.ColumnChart3D.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also