hi guys
I am creating Pie-chart through this code
var pieData = [
{
value: 5000,
color: "#F38630"
},
{
value:1000,
color: "#E0E4CC"
},
{
value: 4000,
color: "#69D2E7"
},
{
value: 1200,
color: "#9D2E7"
}
];
var myPie = new Chart(document.getElementById("pie-chart").getContext("2d")).Pie(pieData);
I am getting proper o/p but i want to display....text as well with data
Go to the complete details ...