Class FastHiLoSegment
Represents chart fast hilo bitmap segment.
Implements
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.UWP.dll
Syntax
public class FastHiLoSegment : ChartSegment, INotifyPropertyChanged
Remarks
Class instance is created automatically by WINRT Chart building system.
Constructors
FastHiLoSegment()
Constructor
Declaration
public FastHiLoSegment()
FastHiLoSegment(ChartSeries)
Called when instance created for FastHiLoSegment
Declaration
public FastHiLoSegment(ChartSeries series)
Parameters
| Type | Name | Description |
|---|---|---|
| ChartSeries | series |
FastHiLoSegment(IList<Double>, IList<Double>, IList<Double>, AdornmentSeries)
Called when instance created for FastHiLoSegment
Declaration
public FastHiLoSegment(IList<double> xValues, IList<double> hiValues, IList<double> loValues, AdornmentSeries series)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IList<System.Double> | xValues | |
| System.Collections.Generic.IList<System.Double> | hiValues | |
| System.Collections.Generic.IList<System.Double> | loValues | |
| AdornmentSeries | series |
Methods
CreateVisual(Size)
Used for creating UIElement for rendering 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 | Size of the panel |
Returns
| Type | Description |
|---|---|
| Windows.UI.Xaml.UIElement | retuns UIElement |
Overrides
GetRenderedVisual()
Gets the UIElement used for rendering this segment.
Declaration
public override UIElement GetRenderedVisual()
Returns
| Type | Description |
|---|---|
| Windows.UI.Xaml.UIElement | reurns 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 overriden 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>)
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> xVals, IList<double> hiVals, IList<double> lowVals)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IList<System.Double> | xVals | |
| System.Collections.Generic.IList<System.Double> | hiVals | |
| System.Collections.Generic.IList<System.Double> | lowVals |
Overrides
SetVisualBindings(Shape)
Method Implementation for set Binding to ChartSegments properties.
Declaration
protected override void SetVisualBindings(Shape element)
Parameters
| Type | Name | Description |
|---|---|---|
| Windows.UI.Xaml.Shapes.Shape | element |
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 overriden by any derived class.
Declaration
public override void Update(IChartTransformer transformer)
Parameters
| Type | Name | Description |
|---|---|---|
| Syncfusion.UI.Xaml.Charts.IChartTransformer | transformer | Reresents the view port of chart control.(refer Syncfusion.UI.Xaml.Charts.IChartTransformer) |