バージョン

データ バインド

XamFinancialChart は、データ セットが単一か複数かどうかに関係なく、データ ソースを分析し、ルールを適用するためにデータ アダプターを使用してデータをプロットします。

データ モデルに関連する特定のプロパティでプロットする必要があるかどうかを明示的に定義する必要があります。プロパティを IncludedProperties または ExcludedProperties に設定し、チャートにそのプロパティを含むか除外するかを設定できます。

XAML の場合:

<ig:XamFinancialChart ItemsSource="{Binding ChartData}"
                      IncludedProperties="{Binding IncludedDataFields}"
                      ExcludedProperties="{Binding ExcludedDataFields}" />

C# の場合:

var chart = new XamFinancialChart();
chart.IncludedProperties = new string[] { "Open", "High", "Low", "Close", "Volume", "Date" };
chart.ExcludedProperties = new string[] { "PercentChange", "SellOrders", "BuyOrders", "Label" };

Visual Basic の場合:

Dim chart = New XamFinancialChart()
chart.IncludedProperties = New String(){ "Open", "High", "Low", "Close", "Volume", "Date" }
chart.ExcludedProperties = New String(){ "PercentChange", "SellOrders", "BuyOrders", "Label" }

以下のトピックはデータのバインドについて説明します。