<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.radar([
{x: 0, value: 60},
{x: 1, value: 30},
{x: 2, value: 60},
{x: 3, value: 10},
{x: 4, value: 60},
{x: 5, value: 30},
{x: 6, value: 60},
{x: 7, value: 10}
]);
// Get type.
var chartType = chart.getType();
chart.title('Get chart type. Chart type is ' + chartType);
chart.container('container');
chart.draw();
});