var salesData = [{
label: "Basic",
color: "#2f7ed8"
}, {
label: "Plus",
color: "#0d233a"
}, {
label: "Lite",
color: "#8bbc21"
}, {
label: "Elite",
color: "#910000"
}, {
label: "Delux",
color: "#1aadce"
}];
var width = 400,
height = 500;
var svg = ("#chart-panel").append("svg")
.attr("width", width)
.attr("height", height)
.append("g").attr("id", "circleDonut");
("circleDonut", randomData(), 150, 150, 130, 100, 30, 0);
function randomData() {
return (function(d) {
return {
label: ,
value: 1000 * (),
color:
};
});
}
$('#chart-panel div').css('display', 'none');