C# Class LiveCharts.Defaults.ScatterPoint

An already configured weighted 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
ScatterPoint ( ) : System

Creates a new instance of BubblePoint class

ScatterPoint ( double x, double y ) : System

Create a new instance of BubblePoint class, giving x and y coordinates

ScatterPoint ( double x, double y, double weight ) : System

Creates a new instance of BubblePoint class, giving x, y and weight

Protected Methods

Method Description
OnPointChanged ( ) : void

On point property changed method

Method Details

OnPointChanged() protected method

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

ScatterPoint() public method

Creates a new instance of BubblePoint class
public ScatterPoint ( ) : System
return System

ScatterPoint() public method

Create a new instance of BubblePoint class, giving x and y coordinates
public ScatterPoint ( double x, double y ) : System
x double
y double
return System

ScatterPoint() public method

Creates a new instance of BubblePoint class, giving x, y and weight
public ScatterPoint ( double x, double y, double weight ) : System
x double
y double
weight double
return System