GrapeCity SPREAD for Windows Forms 11.0J
SpreadChart コンストラクタ(String,Type)


数式。
系列のタイプ。
SpreadChartクラスの新しいインスタンスを初期化します。
構文
'Declaration
 
Public Function New( _
   ByVal formula As String, _
   ByVal seriesType As Type _
)
'使用法
 
Dim formula As String
Dim seriesType As Type
 
Dim instance As New SpreadChart(formula, seriesType)
public SpreadChart( 
   string formula,
   Type seriesType
)

パラメータ

formula
数式。
seriesType
系列のタイプ。
解説
formulaパラメーターは、チャートデータ用の数式です。seriesTypeパラメーターは、追加するチャートの種類を示します。
次のサンプルコードは、チャートを作成します。
fpSpread1.Sheets[0].Cells[0, 0].Value = 3;
fpSpread1.Sheets[0].Cells[1, 1].Value = 7;
fpSpread1.Sheets[0].Cells[3, 3].Value = 5;
FarPoint.Win.Spread.Chart.SpreadChart chart = new FarPoint.Win.Spread.Chart.SpreadChart("Sheet1!$A$1:$D$7", typeof(FarPoint.Win.Chart.BarSeries));
chart.Location = new Point(100, 100);
chart.Size = new Size(200, 200);
fpSpread1.Sheets[0].Charts.Add(chart);
FpSpread1.Sheets(0).Cells(0, 0).Value = 3
FpSpread1.Sheets(0).Cells(1, 1).Value = 7
FpSpread1.Sheets(0).Cells(3, 3).Value = 5
Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart("Sheet1!$A$1:$D$7", GetType(FarPoint.Win.Chart.BarSeries))
chart.Location = New Point(100, 100)
chart.Size = New Size(200, 200)
FpSpread1.Sheets(0).Charts.Add(chart)
参照

SpreadChart クラス
SpreadChart メンバ
オーバーロード一覧

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.