XY Chart NET 3 Control Reference
ProfileOHLCCoordinates Property

Use this property to obtain the open, high, low and close coordinates of a specific Candle profile at a given x-axis value.

Syntax
[Visual Basic]
ReadOnly Property ProfileOHLCCoordinates(ProfileNumber As Integer, XAxisValue As Double) As String()
[C#]
string[] XYChartNETCtl.get_ProfileOHLCCoordinates(int ProfileNumber, double XAxisValue)
[C++]
property cli::array<System::String^, 1> ^XYChartNet::XYChartNETCtl::ProfileOHLCCoordinates[int, double]
       
Parameters
ProfileNumber
The profile index to obtain the values of.  Valid values are 0..(NumProfiles - 1).
XAxisValue
The profile's x-axis scale value.
Example
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

Dim dDate As DateTime = New DateTime(2008, 1, 15)
Dim sCoords(3) As String

With XYChartNETCtl1
   sCoords = .ProfileOHLCCoordinates(0, dDate.ToOADate)
End With
                       
                       
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.