HighChart不在reactjs中显示'table'

问题描述 投票:0回答:1

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

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

reactjs highcharts
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.