我在reactjs项目中使用HighChart。它可以正确显示图表,但不显示表格。我正在showTable:true
中使用config
。
我已经在codeandbox中创建了项目。 https://codesandbox.io/s/wy2v4p0r5k
答案 0 :(得分:0)
您需要导入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