Hi,
The stock chart axes must be all bound to the same date-time field otherwise the navigation will not function.
What you can do instead is to customize the axis label template. This will do if you only need to show a different value there, but it will not change the behavior of the chart. For example:
$("#chart").kendoStockChart({
categoryAxis: {
labels: {
template: "#: dataItem.Number #"
}
}
...
Does this make sense for your scenario?
Regards,
T. Tsonev
Telerik
The stock chart axes must be all bound to the same date-time field otherwise the navigation will not function.
What you can do instead is to customize the axis label template. This will do if you only need to show a different value there, but it will not change the behavior of the chart. For example:
$("#chart").kendoStockChart({
categoryAxis: {
labels: {
template: "#: dataItem.Number #"
}
}
...
Does this make sense for your scenario?
Regards,
T. Tsonev
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!