Skip to content
Advertisement

Highcharts.js column chart labels and data not displaying properly after 60 columns

I recently integrated a highcharts column chart, it was working well until my data reached about 60 columns, when I reached 60 columns most of the labels and bars disappear. When I remove the scroll ability from the chart all labels and data show again.

Please see https://jsfiddle.net/essensebryant/bnh2z6k7/15/ for an illustration of the problem.

I’ve looked all over the documentation but could not find an easy fix.

JavaScript

Advertisement

Answer

You have set xAxis type as category but categories are not defined in your config. Remove

JavaScript

from your config and it should work.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement