XyzSeriesPoint

StockSharp.Xaml.Charting.Model.DataSeries

A structure to contain Xyz series point values for the Y-Axis and Z-axis

Implements: ISeriesPoint<double>, IComparable

Constructors

XyzSeriesPoint
public XyzSeriesPoint(double y, double z)
xyzSeriesPoint = XyzSeriesPoint(y, z)

Initializes a new instance of the XyySeriesPoint struct.

y
The y value.
z
The z value.

Properties

Max
public double Max { get; }
value = xyzSeriesPoint.Max

Gets the maximum of this ISeriesPoint. In the case of an OhlcSeriesPoint this would be the High value

Min
public double Min { get; }
value = xyzSeriesPoint.Min

Gets the minimum of this ISeriesPoint. In the case of an OhlcSeriesPoint this would be the Low value

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

Gets the default Y-value of this ISeriesPoint. In the case of an XyySeriesPoint this would be the Y0 value.

Z
public double Z { get; }
value = xyzSeriesPoint.Z

Gets the Z value of the Xyy point

Methods

CompareTo
public int CompareTo(object obj)
result = xyzSeriesPoint.CompareTo(obj)

Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.

obj
An object to compare with this instance.

Returns: A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance is less than . Zero This instance is equal to . Greater than zero This instance is greater than .