<html>
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 0],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);
// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<!--Div that will hold the pie chart-->
<div id="chart_div"></div>
</body>
</html>
위와 같이 구글챠트를 이용할때 legend 에 값이 0 인것은 나타나지 않는 현상이 있었다.
0 인것도 보여주고 싶을땐
// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300,
'sliceVisibilityThreshold':0};
sliceVisibilityThreshold:0 이 항목을 추가해 주면 0인값도 보여지게 된다.
혹시나 ie8 버전에서 안나오면 어떻하나 했는대 javascript 문법만 잘 맞춰주면 정상으로 나온다.
예를들면 addRows 나 options 등에서 배열형태인대 마지막에 ,를 남겨둔다거나 하면 ie8이나 ie9에서 정상으로 보이지 않는다.
'Story > html/css' 카테고리의 다른 글
복사금지 PC , 모바일 (0) | 2014.11.12 |
---|---|
구글지도 삽입(새 Google 지도) (0) | 2014.10.23 |
flash 와 레이어가 겹쳐있을때 레이어가 flash 밑으로 숨는경우 해결방법 (0) | 2014.02.03 |
ie11 frame history 문제 (0) | 2014.01.14 |
홈페이지제작시 특정 input 속성에만 스타일을 지정할때 Styling Texty Inputs Only (0) | 2013.12.11 |