From Highcharts library I have used bubble chart. In that bubble chart, datalables for some of the bubble are not getting displayed.
Please have a look below screenshot and also jsfiddle demo
Jsfiddle demo : https://jsfiddle.net/twsfrnxz/
From Highcharts library I have used bubble chart. In that bubble chart, datalables for some of the bubble are not getting displayed.
Please have a look below screenshot and also jsfiddle demo
Jsfiddle demo : https://jsfiddle.net/twsfrnxz/
The data label is not displayed because there is not enough space. To display it anyway enable allowOverlap
property:
plotOptions: {
series: {
dataLabels: {
...,
allowOverlap: true
}
}
},
Live demo: https://jsfiddle.net/BlackLabel/r50fw7Lk/
API Reference: https://api.highcharts.com/highcharts/series.column.dataLabels.allowOverlap