EJSC.StockPoint

       

Hierarchy                Properties

 

StockPoint is used to store the data necessary to display stock-related series such as EJSC.CandlestickSeries and EJSC.OpenHighLowCloseseries. The standard properties are an X point value which defines where along the horizontal axis the point will appear, and the open, close, high and low values used to render the series in the chart.  In addition to the standard properties, each point can also store a label and user defined data which may be utilized later during user interaction with the series.  StockPoint objects should generally not be created manually.

 

The constructor expects the X value as well as the open, close, high, and low values, a series which owns the point and optionally (leave null if not used) a label and a userdata string value.

 

Constructor

 

       EJSC.StockPoint( float x, float high, float low, float open, float close, string label, string userdata, EJSC.Series owner )