data range that should be selected in the frame
range:{ start:30, end:40 }
Available properties:
You can specify either ids or indexes for the starting and ending data items in the data range.
range:{ sindex:29, eindex:49 }
What is more, you can set the id of the starting item and the index of the ending one and vice versa. The important thing is that there are always should be one starting value and one ending value of the range. Thus, you can set the range as:
range:{ sindex:29, end:50 }
or like this:
range:{ start:30, eindex:49 }
Back to top