Ok I got it, but only in with BarChart (I think that if work in barchart can work in the same way with Histogram):
My query is:
var query = new google.visualization.Query(tqUrl);
query.setQuery('Select B, G, C');
Where in column C I have the url image, the column C have the index 2 (start in 0) so I use:
var data = response.getDataTable();
data.setColumnProperties( 2, {
role: 'tooltip',
html: true
});
and then in chart properties:
'focusTarget': 'category',
'tooltip': {'isHtml': 'true'},
But when I replace BarChart with Histogram I get the message:
Focus target [object Object] is not supported for the chosen chart type
How can I use it with Histogram this option?