来自 Google 的带有 Charts API 示例的 GWT 无法正常工作
我已下载 http://code.google.com/p/gwt-google-apis/downloads/detail?name=gwt-visualization-1.1.0.zip&can=2&q=在 GWT 中使用图表所需的 jar 附带的存档。 存档中还有示例应用程序 (http://gwt.google. com/samples/hellovisualization-1.1.0/HelloVisualization.html)。但这个例子对我不起作用。此行有一个运行时错误: DataTable 数据 = DataTable.create();
Eclipse 报告了这一点: com.google.gwt.core.client.JavaScriptException:(TypeError):无法读取未定义的属性“DataTable”。
这里有什么问题吗?
I have downloaded http://code.google.com/p/gwt-google-apis/downloads/detail?name=gwt-visualization-1.1.0.zip&can=2&q= archive that comes with jar that is needed in order to use charts in GWT.
In the archive is also example application (http://gwt.google.com/samples/hellovisualization-1.1.0/HelloVisualization.html). But this example is not working for me. It has an runtime error at this line:
DataTable data = DataTable.create();
Eclipse reports this:
com.google.gwt.core.client.JavaScriptException: (TypeError): Cannot read property 'DataTable' of undefined.
What is wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该调用 VisualizationUtils.loadVisualizationApi(onLoadCallback, PieChart.PACKAGE) 来加载 api 并编写 onLoadCallBack 函数来执行某些操作。当 API 加载时。
You should call VisualizationUtils.loadVisualizationApi(onLoadCallback, PieChart.PACKAGE) to load the api and write onLoadCallBack function to do sth. when the API is loaded.