剑道图,如何增加音符图标的大小?

时间:2014-07-07 10:07:42

标签: kendo-dataviz

我正在尝试用箭头绘制一个厚x轴。对于箭头,我试图使用kendo图表的笔记功能。箭头的大小不会根据配置而改变。 点击此处查看fiddle。请参阅以下' 尺寸:16 '对图表没有影响。

我的代码如下,

valueAxis: {
        notes: {
            position: "left",
            line: {
                color: "",
                length: 280

            },
            data: [{
                value: 0,
                icon: {
                    background: "red",
                    type: "triangle",
                   rotation: 90,
                    size: 16
                }
            }],
        },
        labels: {
            template: " #if(value ==0){# #: value # % #}#"
        },
        line: {
            visible: false
        },
        majorGridLines: {
            visible: false
        },
        minorGridLines: {
            visible: false
        },
    },

1 个答案:

答案 0 :(得分:0)

您必须将大小放在方括号外

icon: {
     background: "red",
     type: "triangle",
      rotation: 90
}

尺寸:16