我使用 kendo dataviz 图表并想添加注释。这是我写的代码
$("#resultChart").kendoChart({
dataSource: resultsDataSource,
title: {
text: "Results"
},
legend: {
position: "bottom"
},
chartArea: {
background: ""
},
seriesDefaults: {
type: "line"
},
series: [{
field: "Points",
name: "Points",
noteTextField: "EventName",
notes: {
label: {
position: "outside"
},
position: "bottom"
}
}],
valueAxis: {
labels: {
format: "{0}"
},
line: {
visible: false
},
axisCrossingValue: -10
},
categoryAxis: {
field: "EventDate",
majorGridLines: {
visible: false
}
},
tooltip: {
visible: true,
format: "{0}%",
template: "#= series.name #: #= value #"
}
});
一切都按需要进行,即使用适当的数据绘制图表,但未显示注释。
如果“EventName”属性中有数据(我已经检查过),请帮我找出为什么没有显示注释。我想提一下我使用的是kendo ui 2013.1.514版本。
先感谢您。