Class CandleSegment
Represents a candlestick segment in a CandleSeries, displaying open, high, low, and close values for a data point.
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.Chart.WinUI.dll
Syntax
public class CandleSegment : ChartSegment, INotifyPropertyChanged
Constructors
CandleSegment()
Declaration
public CandleSegment()
Properties
ActualFill
Gets the actual color used to paint the interior of the segment.
Declaration
public Brush ActualFill { get; }
Property Value
| Type |
|---|
| Microsoft.UI.Xaml.Media.Brush |
ActualStroke
Gets the stroke brush used to render the candlestick segment.
Declaration
public Brush ActualStroke { get; }
Property Value
| Type |
|---|
| Microsoft.UI.Xaml.Media.Brush |
Close
Gets or sets the close value of the segment.
Declaration
public double Close { get; set; }
Property Value
| Type |
|---|
| System.Double |
High
Gets or sets the high value of the segment.
Declaration
public double High { get; set; }
Property Value
| Type |
|---|
| System.Double |
Low
Gets or sets the low value of the segment.
Declaration
public double Low { get; set; }
Property Value
| Type |
|---|
| System.Double |
Open
Gets or sets the open value of the segment.
Declaration
public double Open { get; set; }
Property Value
| Type |
|---|
| System.Double |
Implements
System.ComponentModel.INotifyPropertyChanged