MESCIUS SPREAD for ASP.NET 10.0J
異なる種類の系列の結合

主要カテゴリーが同じであれば、異なる種類の系列でも互いに互換性があり、1つのプロットエリアに結合できます。 たとえば、棒系列(BarSeries クラス)と折れ線系列(LineSeries クラス)を、YプロットエリアYPlotArea クラス)内に結合できます。

結合チャートの例

設定方法

  1. 一つ目の系列オブジェクト(BarSeries クラス)を生成し、データを設定します。
  2. 二つ目の系列オブジェクト(LineSeries クラス)を生成し、データを設定します。
  3. PlotArea クラスを生成し、Location プロパティSize プロパティを設定します。
  4. 1.および2.で生成した系列オブジェクトをSeries プロパティが参照する系列コレクションに追加します。
  5. ChartModel クラスを生成し、PlotAreas プロパティが参照するプロットエリアコレクションに3.で生成したYPlotAreaオブジェクトを追加します。
  6. SpreadChart クラスを生成し、Model プロパティに5.で生成したCharModelオブジェクトを設定します。

サンプルコード

次のサンプルコードは、非連結データを使用して、棒系列と折れ線系列を結合した1つのチャートを作成します。

FarPoint.Web.Chart.BarSeries series0 = new FarPoint.Web.Chart.BarSeries();
series0.Values.Add(8.0);
series0.Values.Add(4.0);
series0.Values.Add(2.0);
series0.Values.Add(1.0);
FarPoint.Web.Chart.LineSeries series1 = new FarPoint.Web.Chart.LineSeries();
series1.PointMarker = new FarPoint.Web.Chart.BuiltinMarker(FarPoint.Web.Chart.MarkerShape.Circle, 7.0f);
series1.Values.Add(8.0);
series1.Values.Add(12.0);
series1.Values.Add(14.0);
series1.Values.Add(15.0);
FarPoint.Web.Chart.YPlotArea plotArea = new FarPoint.Web.Chart.YPlotArea();
plotArea.Location = new System.Drawing.PointF(0.2f, 0.2f);
plotArea.Size = new System.Drawing.SizeF(0.6f, 0.6f);
plotArea.Series.Add(series0);
plotArea.Series.Add(series1);
FarPoint.Web.Chart.LabelArea labelArea = new FarPoint.Web.Chart.LabelArea();
labelArea.Location = new System.Drawing.PointF(0.5f, 0.02f);
labelArea.AlignmentX = 0.5f;
labelArea.AlignmentY = 0.0f;
labelArea.Text = "Pareto Chart";
FarPoint.Web.Chart.ChartModel model = new FarPoint.Web.Chart.ChartModel();
model.LabelAreas.Add(labelArea);
model.PlotAreas.Add(plotArea);
FarPoint.Web.Spread.Chart.SpreadChart chart = new FarPoint.Web.Spread.Chart.SpreadChart();
chart.Model = model;
FpSpread1.Sheets[0].Charts.Add(chart);
Dim series0 As New FarPoint.Web.Chart.BarSeries()
series0.Values.Add(8.0)
series0.Values.Add(4.0)
series0.Values.Add(2.0)
series0.Values.Add(1.0)
Dim series1 As New FarPoint.Web.Chart.LineSeries()
series1.PointMarker = New FarPoint.Web.Chart.BuiltinMarker(FarPoint.Web.Chart.MarkerShape.Circle, 7.0F)
series1.Values.Add(8.0)
series1.Values.Add(12.0)
series1.Values.Add(14.0)
series1.Values.Add(15.0)
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(series0)
plotArea.Series.Add(series1)
Dim labelArea As New FarPoint.Web.Chart.LabelArea()
labelArea.Location = New PointF(0.5F, 0.02F)
labelArea.AlignmentX = 0.5F
labelArea.AlignmentY = 0.0F
labelArea.Text = "Pareto Chart"
Dim model As New FarPoint.Web.Chart.ChartModel()
model.LabelAreas.Add(labelArea)
model.PlotAreas.Add(plotArea)
Dim chart As New FarPoint.Web.Spread.Chart.SpreadChart()
chart.Model = model
FpSpread1.Sheets(0).Charts.Add(chart)       

関連トピック

 

 


© MESCIUS inc. All rights reserved.