3d-pie-chart
Version:
Raphael plugin 3d pie chart
34 lines (32 loc) • 590 B
HTML
<html>
<head>
<title>3D Pie Chart</title>
</head>
<body>
<div id="wrapper" style="width:800px; height: 800px;"></div>
<script>
pieChart({
containerId: "wrapper",
title: "Expenses",
data: [
{
value: 45,
color: "#00ff00",
label: "January - 45"
},
{
value: 49,
color: "#ff0011",
label: "February - 49"
},
{
value: 40,
color: "#0079fa",
label: "March - 40"
}
]
});
</script>
</body>
</html>