<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function() {
// create pie chart
var chart = anychart.pie();
// set chart title
chart.title('Gráfico Circular Chequeos eduroam');
// set chart data
chart.data([
{x: 'Chequeos OK', value: 80540},
{x: 'Chequeos Erroneos', value: 94190},
]);
// set container id for the chart
chart.container('container');
// initiate chart drawing
chart.draw();
});