0

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

Highcharts bubble chart data labale issue

Jsfiddle demo : https://jsfiddle.net/twsfrnxz/
  • refer https://stackoverflow.com/questions/48427876/highcharts-is-it-possible-to-show-all-data-labels-in-a-bubble-chart-without-the – Hien Nguyen Apr 23 '19 at 11:28

1 Answers1

1

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

ppotaczek
  • 36,341
  • 2
  • 14
  • 24