0

我的 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说散点线支持错误栏。请帮忙。

谢谢达塔

4

1 回答 1

0

糟糕,我找到了答案http://docs.telerik.com/kendo-ui/controls/charts/features/error-bars#bind-to-categorical-series 我修改了我的 DoJo http://dojo.telerik.com/氧化叶

于 2016-09-19T11:53:48.310 回答