Custom tooltips in Highcharts diagrams
问题 Is there any way to make completely custom tooltips in Highcharts diagrams? Not just with different data, or with coloured border, but to make it look different (for example, like a bubble with picture in it). 回答1: Try this: .... tooltip: { useHTML: true, formatter: function() { return 'here the html code'; } }, 回答2: Using the options/api you can only configure such things as border properties and colors (see tooltip options). So without editing the source or going outside the api, no it is