There are two things you need to do.
First name each data point (bubble):
data: [
{ name: 'Alice', x: 3.5, y: 4, z: 5},
{ name: 'Eve', x: 7, y: 7, z: 3},
{ name: 'Carol', x: 4, y: 8, z: 6}
]
Secondly, create a data label formatter:
dataLabels: {
enabled: true,
formatter: function() {
return this.point.name;
}
}
You can see it in action here: http://jsfiddle.net/franzo/JuGDp/1/
Bob is your uncle.
source
share