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
'UltraChart1.ColumnChart.ChartText
'spacing between each column
UltraChart1.ColumnChart.ColumnSpacing = 1
'how to handle null data points
UltraChart1.ColumnChart.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot
'2D only, spacing bewtween the series(rows)
UltraChart1.ColumnChart.SeriesSpacing = 2
// see ChartText Object
       // ultrachart1.columnchart.charttext
       // spacing between each column
       UltraChart1.ColumnChart.ColumnSpacing = 1;
       // how to handle null data points
       UltraChart1.ColumnChart.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot;
       // 2d only, spacing bewtween the series(rows)
       UltraChart1.ColumnChart.SeriesSpacing = 2;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, 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