I want a series, xSeries to be the points, one for each bar calculated from a formula.
I am doing something like this but it is not working:
ySeries = efsInternal (makeSeries, point);
pointvalue = ySeries.getValue(-3);
function makeSeries(point) {
var xarray = new array;
xarray = xarray.push(point);
return xarray;
}
This is not working. Any help with what I should be doing is appreciated.
jgr
I am doing something like this but it is not working:
ySeries = efsInternal (makeSeries, point);
pointvalue = ySeries.getValue(-3);
function makeSeries(point) {
var xarray = new array;
xarray = xarray.push(point);
return xarray;
}
This is not working. Any help with what I should be doing is appreciated.
jgr
Comment