|
ArrayDataHandler converts the JavaScript array of points into a format that the Series classes can manipulate.
The constructor expects a multi-dimensional array of data and an optional set of object properties.
Constructor
EJSC.ArrayDataHandler( array data [, object options] )
Example
var myDataHandler = new EJSC.ArrayDataHandler( [ [1,1], [2,2], [3,3], [4,4] ] );
|