Class FastCandleBitmapSegment
Represents chart fast candle bitmap segment.
Implements
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.UWP.dll
Syntax
public class FastCandleBitmapSegment : ChartSegment, INotifyPropertyChanged
Remarks
Class instance is created automatically by WinRT Chart building system.
Constructors
FastCandleBitmapSegment()
Declaration
public FastCandleBitmapSegment()
FastCandleBitmapSegment(ChartSeriesBase)
Declaration
public FastCandleBitmapSegment(ChartSeriesBase series)
Parameters
| Type | Name | Description |
|---|---|---|
| ChartSeriesBase | series |
FastCandleBitmapSegment(IList<Double>, IList<Double>, IList<Double>, IList<Double>, IList<Double>, ChartSeriesBase)
Declaration
public FastCandleBitmapSegment(IList<double> xValues, IList<double> OpenValues, IList<double> CloseValues, IList<double> highValues, IList<double> LowValues, ChartSeriesBase series)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IList<System.Double> | xValues | |
| System.Collections.Generic.IList<System.Double> | OpenValues | |
| System.Collections.Generic.IList<System.Double> | CloseValues | |
| System.Collections.Generic.IList<System.Double> | highValues | |
| System.Collections.Generic.IList<System.Double> | LowValues | |
| ChartSeriesBase | series |
Methods
CreateVisual(Size)
Sets the values for this segment. This method is not intended to be called explicitly outside the Chart but it can be overriden by any derived class.
Declaration
public override UIElement CreateVisual(Size size)
Parameters
| Type | Name | Description |
|---|---|---|
| Windows.Foundation.Size | size |
Returns
| Type |
|---|
| Windows.UI.Xaml.UIElement |
Overrides
GetRenderedVisual()
Gets the UIElement used for rendering this segment.
Declaration
public override UIElement GetRenderedVisual()
Returns
| Type | Description |
|---|---|
| Windows.UI.Xaml.UIElement | returns UIElement |
Overrides
OnSizeChanged(Size)
Called whenever the segment's size changed. This method is not intended to be called explicitly outside the Chart but it can be overridden by any derived class.
Declaration
public override void OnSizeChanged(Size size)
Parameters
| Type | Name | Description |
|---|---|---|
| Windows.Foundation.Size | size |
Overrides
SetData(IList<Double>, IList<Double>, IList<Double>, IList<Double>, IList<Double>)
Sets the values for this segment. This method is not intended to be called explicitly outside the Chart but it can be overriden by any derived class.
Declaration
public override void SetData(IList<double> xValues, IList<double> openValue, IList<double> closeValue, IList<double> highValue, IList<double> lowValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IList<System.Double> | xValues | |
| System.Collections.Generic.IList<System.Double> | openValue | |
| System.Collections.Generic.IList<System.Double> | closeValue | |
| System.Collections.Generic.IList<System.Double> | highValue | |
| System.Collections.Generic.IList<System.Double> | lowValue |
Overrides
Update(IChartTransformer)
Updates the segments based on its data point value. This method is not intended to be called explicitly outside the Chart but it can be overridden by any derived class.
Declaration
public override void Update(IChartTransformer transformer)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.UI.Xaml.Charts.IChartTransformer | transformer | Represents the view port of chart control.(refer Syncfusion.UI.Xaml.Charts.IChartTransformer) |