バージョン

配列へのバインディング

Chart コントロールをバインドできるデータ ソースのひとつが Array です。以下の例のコードは、Chart コントロールを配列にバインドする方法を示します。

Visual Basic の場合:

Private Sub Binding_to_an_Array_Load(ByVal sender As System.Object, _
  ByVal e As System.EventArgs) Handles MyBase.Load
	Dim myIntArray() As Integer = {10, 24, 30, 43, 56}
	Me.UltraChart1.DataSource = myIntArray
End Sub

C# の場合:

private void Binding_to_an_Array_Load(object sender, EventArgs e)
{
	this.ultraChart1.DataSource = new int[5] { 10, 24, 30, 43, 56 };
}
Chart Binding to an Array 01.png