-
Notifications
You must be signed in to change notification settings - Fork 1
/
graficas.html
38 lines (33 loc) · 1006 Bytes
/
graficas.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Task', 'Hours per Day'],
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2],
['Sleep', 7]
]);
var options = {
title: 'My Daily Activities'
};
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
</script>
</head>
<body>
sadsadhsfusdhfiusdhfuisdhfuids
<table border="1">
<tr>
<td>sddsadsadsad</td>
</tr>
</table>
<div id="piechart" style="width: 900px; height: 500px;"></div>
</body>
</html>