无法使用kendo图表向categoryAxis添加注释

时间:2013-12-30 15:43:08

标签: kendo-ui kendo-dataviz kendo-chart

是否有可能在剑道图表中添加类别Axis的注释。 正如在documentation中看到的那样应该是可能的,但即使在设置每个选项之后我也看不到任何音符。我找不到有人这样做的例子。有人管理或使用过此功能吗?

my try on jsFiddle

        categoryAxis: {
            field: "age",
            justified: true,
            majorGridLines: {
                visible: false
            },
            minorGridLines: {
                visible: false
            },
            min: 10,
            max: 30,
            labels: {
                step: 5
            },
            notes: {
                data: [{
                    value: { age: 15 },
                    position: "top",
                    icon: {
                        visible: true,
                        size: 16,
                        type: "circle",
                        background: "#585858",
                        border: {
                            color: "#FFFFFF"
                        }
                    },
                    line: {
                        length: 16
                    },
                    label: {
                        visible: false,
                        text: " "
                    }
                }]
            }
        }

谢谢

1 个答案:

答案 0 :(得分:2)

value上的备注的categoryAxis属性似乎代表每个类别值。

以下是配置示例:

notes: {
    label: {
         template: "Value: #: value #"
    },
    icon: {
        visible: true,
        size: 16,
        type: "circle",
        background: "#585858",
        border: {
            color: "#FFFFFF"
        }
    },
    line: {
        length: 16
    },
    data: [{ value: 1}, { value: 5 },{ value: 10 }, { value: 15 }, { value: 20 }]
}

查看this updated fiddle