C# Class LiveCharts.Defaults.ObservablePoint

An already configured chart point, this class notifies a chart to update every time a property changes
Inheritance: IObservableChartPoint
ファイルを表示 Open project: beto-rodriguez/Live-Charts

Public Methods

Method Description
ObservablePoint ( ) : System

Initializes a new instance of ObservablePoint class

ObservablePoint ( double x, double y ) : System

Initializes a new instance of ObservablePoint class giving the x and y coordinates

Protected Methods

Method Description
OnPointChanged ( ) : void

OnPoint property changed method

Method Details

ObservablePoint() public method

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

ObservablePoint() public method

Initializes a new instance of ObservablePoint class giving the x and y coordinates
public ObservablePoint ( double x, double y ) : System
x double
y double
return System

OnPointChanged() protected method

OnPoint property changed method
protected OnPointChanged ( ) : void
return void