我在reactjs项目中使用HighChart。它正确显示图表,但不显示表格。我在showTable:true
使用config
。
我在codesandbox中创建了项目。 https://codesandbox.io/s/wy2v4p0r5k
您需要导入Highcharts exporting
和export-data
模块:
import Highcharts from "highcharts";
require("highcharts/modules/exporting.js")(Highcharts);
require("highcharts/modules/export-data.js")(Highcharts);
现场演示:https://codesandbox.io/s/yw11p8wpw9
另外,我建议你使用官方支持的highcharts-react-official
包装器:https://www.npmjs.com/package/highcharts-react-official