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