Hi,
I have 2 maps, a bubble map and a choropleth map.
For the bubble map I can add custom code and have the data labels reduce in size when viewing smaller than 600px.
For the Choropleth map, I want to do the same, only the code doesn’t seem to work. How can I reduce my data label text size when viewing on a smaller screen?
I am using this code:
Highcharts.merge(true, options, {
responsive: {
rules: [{
condition: {
maxWidth: 600
},
chartOptions: {
plotOptions: {
series: {
dataLabels: {
style: {
fontSize: '12px'
}
}
}
}
}
}]
}
});