Point2D

StockSharp.Xaml.Charting.Model.DataSeries

A struct representing a 2D point

Implements: IPoint

Constructors

Point2D
public Point2D(double x, double y)
point2D = Point2D(x, y)

Initializes a new instance of the Point2D struct.

x
The x value.
y
The y value.

Properties

X
public double X { get; }
value = point2D.X

Gets the X value

Y
public double Y { get; }
value = point2D.Y

Gets the Y value

Methods

ToString
public override string ToString()
result = point2D.ToString()

Returns a String that represents this instance.

Returns: A String that represents this instance.