score:0

Accepted answer

you can refer to the icon property in this way:

xaxis: {
    labels: {
        formatter: function() {
            var point = this.chart.series[0].useroptions.data[this.pos];
            if (point) {
                return '<image src=' + point.icon + '/>';
            }
        },
        ...
    }
}

live demo: https://jsfiddle.net/blacklabel/vdqk45no/


Related Query

More Query from same tag