我正在使用Google Visualization API。我想使用ChartWrapper方法。有人可以给我一个使用JSON格式获取数据的简单示例吗?

最佳答案

 // Create an empty ChartWrapper and set its properties
            var chart1 = new google.visualization.ChartWrapper();
            chart1.setChartType('Table');
            chart1.setContainerId('chart1_div');
            // To set a DataView for the ChartWrapper, use
            // DataView.toJSON()function.
            // There is a no need to set DataTable for the ChartWrapper.
            chart1.setView(dataView1.toJSON());

07-24 09:37