I am using the Telerik Kendo pie chart and I want to be able to color the wedges.
The following is an assessment of my Kendo user interface pie chart:
<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(); </script>
I want the rest of the work to be light gray. How to do it?
Any suggestions would be appreciated.
source share