var pieData = [ { value : 68, color : "#ff0000", highlight : "#ff364c", label : "10미만", percent : 14 }, { value : 14, color : "#ffa600", highlight : "#ffb833", label : "10 - 25", percent : 3 }, { value : 257, color : "#00ff00", highlight : "#3dff3d", label : "25 - 75", percent : 55 }, { value : 85, color : "#00ffff", highlight : "#36ffff", label : "75 - 90", percent : 18 }, { value : 38, color : "#0000ff", highlight : "#3636ff", label : "90 이상", percent : 8 } ]; window.onload = function () { var ctx = document.getElementById("chart-area").getContext("2d"); window.myPie = new Chart(ctx).Pie(pieData); };