별과 도표(서울시장 득표율) 를 만들어 보자 [소스] script src='http://code.jquery.com/jquery-latest.js'> $(document).ready(function() { var ctx = $('#mycanvas')[0].getContext('2d'); //연필로 그리기 (별만들기) ctx.beginPath(); ctx.moveTo(100, 100); ctx.lineTo(200, 100); ctx.lineTo(110, 160); ctx.lineTo(150, 70); ctx.lineTo(180, 160); // 시작 선을 서로 연결해 준다. closePath ctx.closePath(); ctx.stroke(); ctx.beginPath(); // x좌표, y좌표, 반지름..