Well... I know how to display custom text on each bubble in highcharts bubble chart but is it possible to have additional text appear above or outside the bubble (something like the image below)?
For those who need to know how to display custom text on bubbles, here is the required option for chart options: (view the full code)
plotOptions: {
series: {
dataLabels: {
enabled: true,
useHTML:true,
formatter:function(){
return "<span style='position:relative;top:-10px;'>"+this.y + "$</span>";
}
}
}