Alternate for highcharts-more

梦想与她 提交于 2019-12-13 20:28:54

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!