score:1

Accepted answer

unfortunately it is known bug, reported to the developers here: https://github.com/highslide-software/highcharts.com/issues/1759

score:2

put this inside your chart: {}

events: {
                    load: function(){

                        if (this.options.chart.forexport) {

                            highcharts.each(this.series, function (series) {
                                series.yaxis.update({
                                    labels: {
                                        style: {
                                            fontsize: 6
                                        }
                                    }
                                });
                            });
                        }
                    }
}

Related Query

More Query from same tag