NChartPointStatePointStateAlignedToYWithYOpenClose Method (Int32, Double, Double) |
Create a point state that is aligned to the Y grid and has open and close values. This is the a typical
state for a sequence series drawn in 2D.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public static NChartPointState PointStateAlignedToYWithYOpenClose(
int y,
double open,
double close
)
Public Shared Function PointStateAlignedToYWithYOpenClose (
y As Integer,
open As Double,
close As Double
) As NChartPointState
public:
static NChartPointState^ PointStateAlignedToYWithYOpenClose(
[InAttribute] int y,
[InAttribute] double open,
[InAttribute] double close
)
Parameters
- y
- Type: SystemInt32
Integer value on the Y axis that represents the category. - open
- Type: SystemDouble
Double value on the X axis that represents the "open" value. - close
- Type: SystemDouble
Double value on the X axis that represents the "close" value.
Return Value
Type:
NChartPointStateA new instance of the point state.
See Also