我在这里有我的DoJo http://dojo.telerik.com/oxoYE。我正在努力找到一种方法来添加错误栏:
function createChart() {
$("#chart").kendoChart({
seriesDefaults: {
type: "scatterLine",
xErrorLowField: "low",
xErrorHighField: "high",
},
series: [{
data: [{x: 1.7, y: 11, low: 1, high: 3}, {x: 5.4, y: 8, low: 3, high: 6}, {x: 6.4, y: 13.4, low: 5, high: 7}]
}],
tooltip: {
visible: true,
format: "{0},{1}"
}
});
}
http://docs.telerik.com/kendo-ui/controls/charts/features/error-bars表示分散线支持错误栏。 请帮忙。
由于 Datha
答案 0 :(得分:0)