Hi I am trying to understand how to allow user to select a range of dates for a time series based chart - similar to the navigator in the stock chart. I cannot make sense of the documentation and could find an example of this. Appreciate if some one can show me an example.
Thanks,
Jason
1 Answer, 1 is accepted
0
T. Tsonev
Telerik team
answered on 27 Sep 2013, 11:59 AM
Hi,
The from/to options of the selection accept dates as well: categoryAxis: {
field: "d",
select: {
from: new Date(2012, 0, 2), // Inclusive
to: new Date(2012, 0, 7) // Exclusive
}
}