有什么方法可以用不同的颜色显示一部分剑道标签文字吗?请在这里找到图表实施http://jsfiddle.net/52c3K/16/
$("#chart").kendoChart({
legend: {
visible: false
},
dataSource: {
data: data
} ,
seriesDefaults: {
type: "bar",
stack: true
},
series: [{
name: "AA",
field: "AA",
color: "#32CD32",
}, {
name: "BB",
field: "BB",
color: "#0000FF",
labels:{
visible: true,
template: "#: dataItem.AA # (#: dataItem.BB #)"
}
}],
valueAxis: {
max: 180,
line: {
visible: false
},
minorGridLines: {
visible: true
},
labels: {
rotation: "auto",
visible: true
}
},
categoryAxis: {
field: "Category",
majorGridLines: {
visible: false
}
},
chartArea: {
width: 500,
height: 255
},
tooltip: {
visible: true,
template: "#= series.name #: #= value #"
}
});
标签的突出显示部分用红色和粗体显示。
非常感激您的帮忙
这有点难,因为我们不能只使用模板,我尝试使用视觉,并在这里和那里做了一些调整。结果并不完美,但请在jsFiddle上查看
我会试着解释一下我在那里做了什么
new kendo.drawing.Group();
特别是drawDOM
功能+剑道模板new kendo.drawing.Layout()
将绘制的DOM附加到正确的位置,我按照一些提示here