Kendo dataviz饼图作为按钮

时间:2014-03-07 08:53:55

标签: kendo-ui kendo-dataviz

是否可以使用Kendo-Dataviz饼图作为按钮控件。我希望每件作品都有不同的控制。

我在文档中找不到类似的内容。

1 个答案:

答案 0 :(得分:0)

您可以定义seriesClick事件。类似的东西:

$("#chart").kendoChart({
    series: [
        {
            type: "pie",
            categoryField: "type",
            data: [
                { value: 1, type: "Category 1" },
                { value: 2, type: "Category 2" }
            ]
        }
    ],
    seriesClick : function (e) {
        alert("You clicked on: " + JSON.stringify(e.dataItem));
    }
});

看到它在这里运行:http://jsfiddle.net/rS3T4/