or


$("#Chart").kendoChart({ theme: "default", title: { text: "Product Categories" }, legend: { position: "bottom" }, seriesDefaults: { type: "column" }, series: [{ name: "Product", field: "ProductId" }], valueAxis: { labels: { template: "#=value#" // I need to replace with a NAME
// template: "#= dataItem.ProductName #" // this does NOT work
} }, categoryAxis: { field: "CategoryName"
}, tooltip: { visible: true, template: "#= dataItem.ProductName #" // THIS works }, ... omitted