How to create a function to get the month as Jan,feb.. displayed in kendo chart x axis.
var internetUsers = [ { \"Month\": \"1\",
First add an array to hold the month names, like so:
var monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug"];
then modify the categoryAxis to use this array
categoryAxis: { field: "Month", labels: { template: "#=monthNames[value - 1]#" }, },