问题
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
来源:https://stackoverflow.com/questions/51442436/alternate-for-highcharts-more