This answer works for Highcharts 4.1.9.
I had to think for a long time, so I want to pass it on if someone is also looking for this.
Your mileage may vary for other versions.
plotOptions: { scatter: { dataLabels: { format: "{point.name}", enabled: true }, enableMouseTracking: false } }, series: [{ name: 'Projects', data: [{"name":"Point 1", "x":1,"y":2}, {"name":"Point 2", "x":4,"y":5}] }]
What are the key points?
- Make sure the scatter.dataLabels checkboxes are enabled and the format
{point.name} - Make sure the data is in the format
{"name":"Point 1", "x":1,"y":2}
Kim stacks
source share