C# Class LiveCharts.Defaults.DateTimePoint

An already configured chart point with a date time and a double properties, this class notifies the chart to update every time a property changes
Inheritance: IObservableChartPoint
Exibir arquivo Open project: beto-rodriguez/Live-Charts

Public Methods

Method Description
DateTimePoint ( ) : System

Initializes a new instance of DateTimePoint class

DateTimePoint ( System.DateTime dateTime, double value ) : System

Initializes a new instance of DateTimePoint class, giving date time and value

Protected Methods

Method Description
OnPointChanged ( ) : void

On Point property changed method

Method Details

DateTimePoint() public method

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

DateTimePoint() public method

Initializes a new instance of DateTimePoint class, giving date time and value
public DateTimePoint ( System.DateTime dateTime, double value ) : System
dateTime System.DateTime
value double
return System

OnPointChanged() protected method

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