<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.pie([
{x: 'Cycling', value: 7},
{x: 'Swimming', value: 7},
{x: 'Run', value: 7}
]);
// Get overlap mode.
var overlapMode = chart.overlapMode();
chart.title('The current overlap mode is ' + overlapMode);
chart.container('container');
chart.draw();
});