Class ChartBollingerBand
Class implementation for ChartBollingerBand
Inheritance
System.Object
ChartBollingerBand
Assembly: Syncfusion.Chart.Wpf.dll
Syntax
public class ChartBollingerBand : DependencyObject
Constructors
ChartBollingerBand(IChartData, ChartTechnicalIndicator)
Called when instance created for ChartBollingBand
Declaration
public ChartBollingerBand(IChartData Points, ChartTechnicalIndicator indicator)
Parameters
Fields
BollingerMovingAverageProperty
Identifies the BollingerMovingAverage dependency property.
Declaration
public static readonly DependencyProperty BollingerMovingAverageProperty
Field Value
Type |
System.Windows.DependencyProperty |
LowerLineColorProperty
Identifies the LowerLineColor dependency property.
Declaration
public static readonly DependencyProperty LowerLineColorProperty
Field Value
Type |
System.Windows.DependencyProperty |
SignalLineColorProperty
Identifies the PrimaryAxisStyle dependency property.
Declaration
public static readonly DependencyProperty SignalLineColorProperty
Field Value
Type |
System.Windows.DependencyProperty |
UpperLineColorProperty
Identifies the UpperlineColor dependency property.
Declaration
public static readonly DependencyProperty UpperLineColorProperty
Field Value
Type |
System.Windows.DependencyProperty |
Methods
GetBollingerMovingAverage(DependencyObject)
return the int Value from the given DependencyObject
Declaration
public static int GetBollingerMovingAverage(DependencyObject obj)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
Returns
GetLowerLineColor(DependencyObject)
Return the brush value from the given DependencyObject
Declaration
public static Brush GetLowerLineColor(DependencyObject obj)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
Returns
Type |
System.Windows.Media.Brush |
GetSignalLineColor(DependencyObject)
Return the Brush Value from the given DependencyObject
Declaration
public static Brush GetSignalLineColor(DependencyObject obj)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
Returns
Type |
System.Windows.Media.Brush |
GetUpperLineColor(DependencyObject)
Return the Brush value from the Dependency object
Declaration
public static Brush GetUpperLineColor(DependencyObject obj)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
Returns
Type |
System.Windows.Media.Brush |
OnPropertyChanged(DependencyPropertyChangedEventArgs)
Invoked whenever the effective value of any dependency property on this System.Windows.DependencyObject has been updated. The specific dependency property that changed is reported in the event data.
Declaration
protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)
Parameters
Type |
Name |
Description |
System.Windows.DependencyPropertyChangedEventArgs |
e |
Event data that will contain the dependency property identifier of interest, the property metadata for the type, and old and new values.
|
SetBollingerMovingAverage(DependencyObject, Int32)
Set BollingerMovingAverage to the Corresponding DependencyObject from the Given value.
Declaration
public static void SetBollingerMovingAverage(DependencyObject obj, int value)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
System.Int32 |
value |
|
Set the LowerLineColor to the corresponding DependencyObject from the given value
Declaration
public static void SetLowerLineColor(DependencyObject obj, Brush value)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
System.Windows.Media.Brush |
value |
|
Set SignalLineColor to the Corresponding DependencyObject from the Given value.
Declaration
public static void SetSignalLineColor(DependencyObject obj, Brush value)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
System.Windows.Media.Brush |
value |
|
Set the UpperLineColor to the corresponding object from the given value.
Declaration
public static void SetUpperLineColor(DependencyObject obj, Brush value)
Parameters
Type |
Name |
Description |
System.Windows.DependencyObject |
obj |
|
System.Windows.Media.Brush |
value |
|