22 March 2017
highcharts no data message

No data is actually a module that needs to be loaded separately from the highcharts library. For some reason highcharts no data message is displayed below the grid. There is an easy fix of enabling html output. If you use ajax to load the data, you could use no data to display a simple loading message as well.

Source code viewer
  1. var config = {
  2. noData: {
  3. // Display no data message on top of the grid.
  4. useHTML: true,
  5. },
  6. };
Programming Language: Javascript