Class RangeColumnSegment
Represents chart range column segment.
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class RangeColumnSegment : ColumnSegment, INotifyPropertyChanged
Remarks
Class instance is created automatically by WINRT Chart building system.
Constructors
RangeColumnSegment()
Declaration
public RangeColumnSegment()
RangeColumnSegment(Double, Double, Double, Double, RangeColumnSeries, Object)
Called when instance created for RangeColumnSegment
Declaration
public RangeColumnSegment(double x1, double y1, double x2, double y2, RangeColumnSeries series, object item)
Parameters
Type | Name | Description |
---|---|---|
System.Double | x1 | Used to specify segment x1 |
System.Double | y1 | Used to specify segment y1 |
System.Double | x2 | Used to specify segment x2 |
System.Double | y2 | Used to specify segment y2 |
RangeColumnSeries | series | Used to specify corresponding series |
System.Object | item | Used to specify corresponding item model |
Properties
High
Gets or sets the high(top) value bind with this segment.
Declaration
public double High { get; set; }
Property Value
Type |
---|
System.Double |
Low
Gets or sets the low(bottom) value bind with this segment.
Declaration
public double Low { get; set; }
Property Value
Type |
---|
System.Double |
Methods
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) |
Overrides
Implements
System.ComponentModel.INotifyPropertyChanged