Tooltip Template Formating in Kendo-UI
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have the following code, and initially my data consists only x and y values, however, once I added another value which is k but it stopped working. I am planning to display k value as an additional information into tooltip. Does anybody has any idea? function createChart() { $("#chart") .kendoChart({ xAxis: {}, yAxis: {}, seriesDefaults: {type: "scatterLine" }, series: [{data: stats}], tooltip:{visible:true,template: "#= myTooltip(value) # "} }); } function myTooltip(value) { return Math.abs(value.x) + ", "+Math.abs(value.y)+","+Math.abs