MESCIUS SPREAD for ASP.NET 10.0J
GapWidth プロパティ (HistogramSeries)

分類間の間隔の量を取得または設定します。
構文
'Declaration
 
Public Property GapWidth As Single
public float GapWidth {get; set;}
例外
例外説明
System.ArgumentOutOfRangeExceptionvalueが0未満であるか、5を超えています。
解説
間隔の幅は、データポイントの幅に対して相対的に測定されます(0 = 間隔なし、1 = 間隔とデータポイントの幅は同じ)。
次のサンプルコードは、ヒストグラム図を作成します。
FarPoint.Web.Chart.HistogramSeries hs = new FarPoint.Web.Chart.HistogramSeries();
hs.SeriesName = "Histogram Sample";
hs.Values.Add(23);
hs.Values.Add(5);
hs.Values.Add(79);
hs.Values.Add(11);
hs.Values.Add(23);
hs.Values.Add(55);
hs.Values.Add(88);
hs.Values.Add(67);
hs.Values.Add(42);
hs.Values.Add(56);
hs.BinOption.BinSize = 20;
hs.GapWidth = 1;
FarPoint.Web.Chart.YPlotArea plotArea = new FarPoint.Web.Chart.YPlotArea();
plotArea.Location = new PointF(0.2f, 0.2f);
plotArea.Size = new SizeF(0.6f, 0.6f);
plotArea.Series.Add(hs);
FarPoint.Web.Chart.ChartModel model = new FarPoint.Web.Chart.ChartModel();
model.PlotAreas.Add(plotArea);
FarPoint.Web.Spread.Chart.SpreadChart chart = new FarPoint.Web.Spread.Chart.SpreadChart();
chart.Model = model;
chart.Left = 0;
chart.Top = 150;
chart.Width = 400;
chart.Height = 200;
FpSpread1.ActiveSheetView.Charts.Add(chart);
Dim hs As New FarPoint.Web.Chart.HistogramSeries()
hs.SeriesName = "Histogram Sample"
hs.Values.Add(23)
hs.Values.Add(5)
hs.Values.Add(79)
hs.Values.Add(11)
hs.Values.Add(23)
hs.Values.Add(55)
hs.Values.Add(88)
hs.Values.Add(67)
hs.Values.Add(42)
hs.Values.Add(56)
hs.BinOption.BinSize = 20
hs.GapWidth = 1
Dim plotArea As New FarPoint.Web.Chart.YPlotArea()
plotArea.Location = New PointF(0.2F, 0.2F)
plotArea.Size = New SizeF(0.6F, 0.6F)
plotArea.Series.Add(hs)
Dim model As New FarPoint.Web.Chart.ChartModel()
model.PlotAreas.Add(plotArea)
Dim chart As New FarPoint.Web.Spread.Chart.SpreadChart()
chart.Model = model
chart.Left = 0
chart.Top = 150
chart.Width = 400
chart.Height = 200
FpSpread1.ActiveSheetView.Charts.Add(chart)
参照

HistogramSeries クラス
HistogramSeries メンバ

 

 


© MESCIUS inc. All rights reserved.