バージョン

BarChart プロパティ

横棒チャートの全書式プロパティにアクセスするためのAppearanceオブジェクトを返します。
シンタックス
'宣言
 
Public Property BarChart As BarChartAppearance
public BarChartAppearance BarChart {get; set;}
使用例
'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;
参照