This question is locked. New answers and comments are not allowed.
How could I catch the event when user change the navigator's selected range?
for example,
$("#stock-chart").kendoStockChart({
navigator: {
series: {
type: "line",
field: "volume"
},
select: {
from: "2012/01/01",
to: "2012/03/01"
}
},
...
})
I just want to do something when user change the selected range of the navigator. Is there any api for the event?
for example,
$("#stock-chart").kendoStockChart({
navigator: {
series: {
type: "line",
field: "volume"
},
select: {
from: "2012/01/01",
to: "2012/03/01"
}
},
...
})
I just want to do something when user change the selected range of the navigator. Is there any api for the event?