使用 Kendo 饼图,是否可以设置标签的不透明度背景?

Using Kendo pie charts, is it possible to set the opacity background of the labels?

我正在尝试删除内部标签的背景框。使用调试器,我可以将不透明度设置为 0,它看起来不错,但我找不到设置它的选项。

只需在标签对象上设置 background: "transparent" 例如:

            seriesDefaults: {
                labels: {
                    template: "#= kendo.format('{0:P}', percentage)#",
                    position: "center",
                    visible: true,
                    background: "transparent"
                }
            },

DEMO