score:1

You can use data labels instead of series labels.

Example:

    plotOptions: {
        series: {
            dataLabels: {
                enabled: true,
                formatter: function() {
                    if (this.point.index === this.series.points.length - 1) {
                        return this.series.name;
                    }
                }
            },
            ...
        }
    }

Live demo: https://jsfiddle.net/BlackLabel/9ps2ckhr/

API Reference: https://api.highcharts.com/highcharts/plotOptions.series.dataLabels


Related Query

More Query from same tag