Alternate for highcharts-more

2019-09-03 08:12发布

问题:

As per npm highcharts-more.js is deprecated and we just need to import respective modules from the highcharts folder. But when I try to remove highcharts-more dependency I am getting error. We are trying to build a boxplot using react-highcharts v16.0.2.

I even tried removing highcharts-more.js import from their demo and see that it fails.

Am i missing anything in the implementation aspect here ?

回答1:

Import required dependencies as

import ReactHighchart from 'react-highcharts';
import HighchartMore from 'highcharts/highcharts-more';
HighchartMore(ReactHighchart.Highcharts);

StackBlitz Demo

There is no deprecated dependency