<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
// create data
var data = [
["02/06", 12000, 10000, 10400, 12000],
["03/06", 13000, 17000],
["04/06", 25000, 19000],
["05/06", 16000, 16000]
];
// create a 3d column chart
var chart = anychart.bar3d();
// enable the z-axis distribution
chart.zDistribution(true);
// set the data
chart.data(data);
// set the chart title
chart.title("Evolução de Casos Confirmados em Boa Vista");
// set the container id
chart.container("container");
// initiate drawing the chart
chart.draw();
chart.legend();
});