Google Chart工具栏:从Google Chart工具栏导出实时数据

时间:2018-08-09 09:33:20

标签: charts google-visualization

我用来自服务器的实时数据实现了Google图表。现在,我想使用Google图表工具栏将该数据导出为CSV格式。但是我不确定要传入dataSource URL吗?我尝试使用实时数据URL,但无法正常工作。

我正在使用以下类似的代码。 URL返回JSON响应。

$.ajax({
    url: "http://example.com:8082/api/v1/eis/records",
    dataType: "json",
    success: function (jsonData) {
        var data = new google.visualization.DataTable();
        // assumes "word" is a string and "count" is a number
        data.addColumn('string', 'word');
        data.addColumn('number', 'count');

        for (var i = 0; i < jsonData.length; i++) {
            data.addRow([jsonData[i].word, jsonData[i].count]);
        }
        var chart = new google.visualization.AreaChart(document.getElementById('xyz'));
        chart.draw(data);
    }
});

在工具栏中使用此URL导出数据是否有解决方案?

谢谢

0 个答案:

没有答案