I have customized my stacked bar highchart so that the last series is colored grey. However, I am wondering if there is a way to change the text color to black for this specific series where the background color is grey.
plotOptions: {
series: {
stacking: 'percent',
},
bar: {
stacking: 'percent',
dataLabels: {
enabled: true,
format: '{y}%',
style: {
color: '#ffffff' //I currently have it set to white here
}
}
}
}