-- JQuery

JQuery Sortable로 Sort 시 Google Chart가 사라지는 현상

어린왕자악꿍 2012. 9. 3. 16:20

Google Chart로 되어 있는 Content들을 JQuery의 Sortable로 구현했는데, 옮기면 유독 Google Chart로 된 Content가 사라지는 현상이 발생했다. 검색해보니 아래의 옵션을 Google Chart에 주면 해결된다.

new google.visualization.PieChart(document.getElementById('piechart')).
             draw(data, {fontName: "맑은 고딕, Malgon Gothic", 
             fontSize: 12,
             width: 475,
             height: 250,
           
  forceIFrame: false,
             chartArea: {left:20,top:50,width:"200%"},
             title:""});


잠깐 Google Chart에 실망했다가 역시라고 바뀌는 순간 ;;;