使用Highcharts GWT创建表

时间:2019-06-13 09:02:22

标签: gwt highcharts

我正在使用GWT(Highcharts-1.7.0.jar)API创建图表。 我还想为相应的图表数据创建表。 当我探索时,我发现 http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/export-data/showtable/ 以下javascript将启用表格

    exporting: {
       showTable: true
    }

但是我无法在'highcharts-1.7.0.jar'中找到此API

我可以为此实现自定义逻辑。但是我使用的是“向下钻取” API,因此我也希望根据“向下钻取图表”来加载表。

我尝试通过将export设置为true

    chart.setExporting( new Exporting().setEnabled( true ) );

添加此代码后,我可以选择导出为pdf,图像等,但不能导出为csv,xls。

1 个答案:

答案 0 :(得分:0)

在您提供的jsfiddle示例中,您可以看到Highcharts配置对象中有一个选项:

exporting: {
   showTable: true
}

此外,如Highcharts export documentation中所述,您需要将此代码添加到您的代码中:

<script src="https://code.highcharts.com/modules/exporting.js"></script>

<!-- optional -->
<script src="http://code.highcharts.com/modules/offline-exporting.js"></script>
<script src="http://code.highcharts.com/modules/export-data.js"></script>

<div class="chart-outer">
    <div id="container"></div>
    <!-- data table is inserted here -->
</div>

我也鼓励您看看exporting API documentation