anychart.onDocumentReady(function () {
var chart = anychart.column([
{x: 'John', value: 10000},
{x: 'Jake', value: 12000},
{x: 'Peter', value: 18000},
{x: 'James', value: 11000},
var tooltip = chart.getSeries(0).tooltip();
tooltip.titleFormat('<img src="https://static.anychart.com/images/oceanic-airlines.png" hspace="15" width="50px" height="50px"/>')
tooltip.format('<b>{%X}</b>: <i>{%Value}</i>');
chart.title('Enable HTML tooltip');
chart.container('container');