对于这个例子:
http://dojo.telerik.com/arIhI/2
$("#chart").kendoChart({
dataSource: {
data: [
{ score: 1.1, legend: 'a' },
{ score: 2.5, legend: 'b' },
{ score: 3.25, legend: 'c' }
]
},
series: [{
field: "score",
labels: {
visible: true,
template: "Score is: #: value #% legend is: ????"
},
}]
});
2个问题:
1)是否可以将 html 添加到模板中(比如Value is: ....)?
2)是否可以向标签添加多个值。我想添加分数和图例。
-谢谢。