위와 같은 파이차트를 출력했다 사실 이전에 포스팅한 컬럼 차트와 크게 다를게 없고, 그냥 자바스크립트 내부만 좀 바꿔주면 된다 https://bug41.tistory.com/32 javascript 부분 $.ajax({ type: "POST", url : "ajax.php", data:{ 각종 데이터 seq, id 등등 }, success: function (res) { var pieData = google.visualization.arrayToDataTable(JSON.parse(res)); var options = { title: '파이통계', colors: ['#3F6D98','#D26812'] }; $("#piechart_material").show(); var chart = new google...