HighChart在ReactJS中不显示“表”

时间:2019-03-07 13:57:46

标签: reactjs highcharts

我在reactjs项目中使用HighChart。它可以正确显示图表,但不显示表格。我正在showTable:true中使用config

我已经在codeandbox中创建了项目。 https://codesandbox.io/s/wy2v4p0r5k

1 个答案:

答案 0 :(得分:0)

您需要导入Highcharts exportingexport-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