【发布时间】:2012-01-26 12:12:22
【问题描述】:
我正在使用 Telerik Kendo 饼图,我希望能够为楔形上色。
以下是我的剑道 UI 饼图的标记:
<script type="text/javascript">
function createChart() {
jQuery("#chart").kendoChart({
theme: jQuery(document).data("kendoSkin") || "Metro",
legend: {
position: "bottom"
},
seriesDefaults: {
labels: {
visible: true,
format: "{0}%"
}
},
series: [{
type: "pie",
data: [{
category: "Remaining Work",
value: 75,
explode: true
}, {
category: "CIOs",
value: 2
}, {
category: "Other Executives",
value: 10
}, {
category: "Directors and Physicians",
value: 13
}]
}],
tooltip: {
visible: true,
format: "{0}%"
}
});
}
jQuery(document).ready(function () {
setTimeout(function () {
createChart();
// Initialize the chart with a delay to make sure
// the initial animation is visible
}, 400);
jQuery(document).bind("kendo:skinChange", function (e) {
createChart();
});
});
</script>
我希望剩下的工作是浅灰色的。我该如何做到这一点?
任何建议将不胜感激。
【问题讨论】:
标签: javascript jquery jquery-plugins telerik kendo-ui