我需要更改图表标签字体颜色以进行打印。我试过了 :
exporting: {
buttons: {
contextButton: {
menuItems: [{
text: 'Print',
onclick: function() {
this.print();
}
}]
}
},
chartOptions: {
yAxis : {
labels: {
style: {
color: 'black'
}
}
}
}
}
但它不起作用。