この例では:
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) ラベルに複数の値を追加することは可能ですか。スコアと凡例を追加したいと思います。
-ありがとう。