File size: 1,146 Bytes
e73e36b |
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 |
<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([
['Label', 'Score'],
['Joy', 0.9762780666351318],
['Sadness', 0.006413798779249191],
['Neutral', 0.005555825307965279],
['Anger', 0.003799660596996546],
['Surprise', 0.0037724850699305534],
['Disgust', 0.0034403549507260323],
['Fear', 0.0007397727458737791]
]);
var options = {
title: 'Pie Chart',
is3D: true,
};
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id="piechart" style="width: 900px; height: 500px;"></div>
</body>
</html> |