剑道图线和系列悬停

时间:2016-08-02 15:04:55

标签: javascript css html5 kendo-ui kendo-chart

我试图解决我的剑道图中的问题。关于系列Hover在慕斯徘徊系列时工作正常,但是当我想知道它在线上的价值时它不会出现,我不知道为什么。

$("#chart1").data("kendoChart").setOptions({
        categoryAxis: [{

            majorGridLines: {
                visible: true,
                step: 10
            },
            line: {
                visible: false
            },
            labels: {
                rotation: 'auto'
            },
            notes: {
                icon: {
                    type: 'square', 
                },
                data:[{
                    value: this.selectionPosStart,
                    label: { 
                        text: 'P',
                        background: color1,
                        color: 'white'
                    },
                    line: {
                        color: color1,
                        length: lenght,
                        width: 2,
                    }
                }, {
                    value: this.selectionPosEnd,
                    label: { 
                        text: 'D',
                        background: color2,
                        color: 'white'
                    },
                    line: {
                        color: color2,
                        opacity: 0.5,
                        length: length,
                        width: 2
                    }
                }],
            }
        }],
        valueAxis: {
            majorUnit: 1
        },    
    });

谢谢!

1 个答案:

答案 0 :(得分:0)

您尚未使用工具提示attr,例如

tooltip: {
                    visible: true,
                    template: "#= series.name #: #= value #"
                }