C# Class LiveCharts.Defaults.OhlcPoint

An already configured chart point, this class notifies the chart to update every time a property changes
Inheritance: IObservableChartPoint
Show file Open project: beto-rodriguez/Live-Charts

Public Methods

Method Description
OhlcPoint ( ) : System

Initializes a new instance of OhclPoint class

OhlcPoint ( double open, double high, double low, double close ) : System

Initializes a new instance o OhclPointc class, giving open, high, low and close values

Protected Methods

Method Description
OnPointChanged ( ) : void

On point property changed method

Method Details

OhlcPoint() public method

Initializes a new instance of OhclPoint class
public OhlcPoint ( ) : System
return System

OhlcPoint() public method

Initializes a new instance o OhclPointc class, giving open, high, low and close values
public OhlcPoint ( double open, double high, double low, double close ) : System
open double
high double
low double
close double
return System

OnPointChanged() protected method

On point property changed method
protected OnPointChanged ( ) : void
return void