
以下の画像は XamFinancialChart でトレンドライン レイヤーの使用を表示します。トレンドラインにはさまざまなタイプがあります。QuadraticFit を表示するドロップダウンを使用してタイプを変更できます。
注: このプロパティはすべてのチャート ペインに適用し、同じトレンドライン タイプはすべてのチャート ペインに適用されます。
以下のコードは TrendLineType を設定する方法を紹介します。
XAML の場合:
<ig:XamFinancialChart ItemsSource="{Binding}"
TrendLineType="QuinticFit"
TrendLineBrushes="Green"
TrendLineThickness="2" />
Visual Basic の場合:
Dim chart as New XamFinancialChart()
chart.TrendLineType = Infragistics.Controls.Charts.TrendLineType.QuinticFit
chart.TrendLineBrushes = new Infragistics.BrushCollection();
Dim brush As SolidColorBrush = new SolidColorBrush()
brush.Color = Colors.Green
chart.TrendLineBrushes.Add(brush)
chart.TrendLineThickness = 2
C# の場合:
var chart = new XamFinancialChart();
chart.TrendLineType = Infragistics.Controls.Charts.TrendLineType.QuinticFit;
chart.TrendLineBrushes = new Infragistics.BrushCollection();
SolidColorBrush brush = new SolidColorBrush();
brush.Color = Colors.Green;
chart.TrendLineBrushes.Add(brush);
chart.TrendLineThickness = 2;