'宣言 Public Property BarChart3D As BarChart3DAppearance
public BarChart3DAppearance BarChart3D {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;