구글 파이차트 관련해서 한번만 더 질문드리겠습니다. ㅠㅠ
본문
모바일에서 오른쪽으로 치우쳐저서 출력되는데 화면비율 맞출려면 어떻게 해야하나요??
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Task', 'vote hit'],
<? for ($i=0, $m=sizeof($vote_list); $i<$m; $i++) { ?>
['<?=htmlspecialchars($vote_list[$i][vt_item], ENT_QUOTES, 'UTF-8')?>', <?=$vote_list[$i][vt_hit]?>],
<? } ?>
]);
var options = {
title: '',
sliceVisibilityThreshold:0,
tooltip: {text: 'percentage'}
};
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
</script>
<div id="piechart" style="width: 800px; height: 400px;"></div>
!-->
답변 1
해당 코드를 감싸고 있는 코드를 확인 해 보세요.
<div id="piechart" style="width: 800px; height: 400px;"></div>
또는 고정값 width:800px; 이 부분이 문제일 껍니다.
!-->
답변을 작성하시기 전에 로그인 해주세요.