Version

BarChart Property

Returns an Appearance object that you can use to access all the formatting properties of an Bar Chart.
Syntax
'Declaration
 
Public Property BarChart As BarChartAppearance
public BarChartAppearance BarChart {get; set;}
Example
'determines how much space goes between each of the bars for BarChart/BarChart3D
UltraChart1.BarChart.BarSpacing = 1
'see chartText property for chart text explanation and properties
'UltraChart1.BarChart.ChartText()
'determines how the chart handles null points of data
UltraChart1.BarChart.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot
'determines the amount of space between each series or row

'2D only
UltraChart1.BarChart.SeriesSpacing = 2
// determines how much space goes between each of the bars for BarChart/BarChart3D
      UltraChart1.BarChart.BarSpacing = 1;
      // see chartText property for chart text explanation and properties
      // ultrachart1.barchart.charttext()
      // determines how the chart handles null points of data
      UltraChart1.BarChart.NullHandling = Infragistics.UltraChart.Shared.Styles.NullHandling.DontPlot;
      // determines the amount of space between each series or row

      // 2d only
      UltraChart1.BarChart.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