<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.column3d([
{x: 'Meat', value: 10},
{x: 'Fruit', value: 12},
{x: 'Nuts', value: 18},
{x: 'Milk', value: 11},
{x: 'Fish', value: 5}
]);
// Get tooltip.
var tooltip = chart.tooltip();
tooltip.enabled(true);
tooltip.fontColor('#ee3b3b');
tooltip.fontWeight(600);
tooltip.background('#76ee00');
chart.title('Get and modify chart tooltip');
chart.container('container');
chart.draw();
});