getFrameRange
returns the object of the data range selected in the frame
object getFrameRange();
| object | the object of the data range selected in the frame | 
Available only in PRO Edition
Example
rangechart.getFrameRange();
Details
the parameters of the returned object are:
- start - (number, string) id of the item that starts the range, or value of the property that is defined in the frameId parameter
 
- sindex - (number) index of the item that starts the range 
 
- end - (number, string) id of the item that ends the range, or value of the property that is defined in the frameId parameter
 
- eindex - (number) index of the item that ends the range 
 
{
    start: 30,
    sindex:29,
    end: 40,
    eindex:39    
}
See also
			Back to top