Page 2 of 2

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

Posted: Fri Jul 20, 2018 5:25 pm
by Jeffrey Phillips
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?

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

Posted: Mon Jul 23, 2018 7:34 am
by sophie
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

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

Posted: Mon Jul 23, 2018 11:52 am
by sophie
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