Jeffrey Phillips
Posts: 56
Joined: Tue Aug 30, 2016 9:32 pm

Re: Labels in Scatter/Bubble Charts (Error #14)

I like the second option, using

Code: Select all

var labels
, but can you get the labels on the points and not just in the tooltip?
sophie
Posts: 22
Joined: Fri Jun 08, 2018 7:22 am

Re: Labels in Scatter/Bubble Charts (Error #14)

Hi Jeffrey,

Thank you for the feedback. We are aware of this and develop a new preview system.

I will look into the second option.

Best regards,
Sophie
sophie
Posts: 22
Joined: Fri Jun 08, 2018 7:22 am

Re: Labels in Scatter/Bubble Charts (Error #14)

Hi Jeffrey,

You can add the following options in custom code to get data labels as well:

Code: Select all

    plotOptions: {
        series: {
            dataLabels: {
                enabled: true,
                formatter: function () {
                    return labels[this.point.index];
                }
            }
        }
    },
Best regards,
Sophie

Return to “Highcharts Cloud”