什么是谷歌图表?
Google 地图是一种 Google API
Google 字体是一种 Google API
Google Charts 是一个 Google API
了解如何将 Google 图表添加到您的网页。
谷歌饼图
从一个简单的基本网页开始。
添加一个 id 为"piechart"的 <div> 元素:
实例
<!DOCTYPE html>
<html>
<body>
<h1>My Web Page</h1>
<div id="piechart"></div>
</body>
<html>
在 google.com 添加对 Chart API 的引用:
实例
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
并添加一个 JavaScript 函数:
实例
<script type="text/javascript">
// Load google charts
google.charts.load('current',
{'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
// Draw the chart and set the chart values
function drawChart() {
var data =
google.visualization.arrayToDataTable([
['Task', 'Hours per Day'],
['Work', 8],
['Friends', 2],
['Eat', 2],
['TV',
2],
['Gym', 2],
['Sleep', 8]
]);
// Optional; add
a title and set the width and height of the chart
var options = {'title':'My
Average Day', 'width':550, 'height':400};
// Display the chart
inside the <div> element with id="piechart"
var chart = new
google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
</script>
亲自试一试 »