<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('Top 10 Cosmetic Products by Revenue');
// set chart data
chart.data([
{x: 'Rouge', value: 116},
{x: 'Foundation', value: 1},
]);
// set container id for the chart
chart.container('container');
// initiate chart drawing
chart.draw();
});