Unable to import HighchartsNoDataToDisplay
import HighchartsNoDataToDisplay from 'highcharts/modules/no-data-to-display';
saying @type/highcharts/modules/no-data-to-display has no default export.
@prameetpradhan This is my solution:
import * as Highcharts from 'highcharts';
declare function require(name: string);
const HighchartsNoDataToDisplay = require('highcharts/modules/no-data-to-display');
HighchartsNoDataToDisplay(Highcharts);
Happy coding :+1: :100: ;-)
Most helpful comment
@prameetpradhan This is my solution:
Happy coding :+1: :100: ;-)