Version

ColumnChart Property

Returns an Appearance object that you can use to access all the formatting properties of a Column Chart.
Syntax
'Declaration
 
Public Property ColumnChart As ColumnChartAppearance
public ColumnChartAppearance ColumnChart {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