在 Google Visualization 中的 DataTable 中插入 JSON
我读到 JSON 可以插入到数据表中。然而,它完成了 在 HTML 页面上的 JS 中(如果没记错的话)。我正在使用 GWT- 此处给出的可视化驱动程序,以及添加可视化驱动程序的唯一方法行不是 设计时考虑到了 JSON。有没有可行的解决方案?我是 尝试制作堆积柱形图。 谢谢。
I read that JSON can be inserted into a datatable. However, its done
in JS on the HTML page (if memory serves right). I am using the GWT-
visualisation driver as given here, and the only methods to add a row are not
designed with JSON in mind. Is there any work-able solution? I am
trying to make a Stacked Column Chart.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还结合使用地理地图和数据表来解决这个问题。在我的解决方法中,我使用原型 javascript 框架中的 evalJSON() 来使 json 字符串成为一个对象。
然后我循环遍历对象的长度:
这对我来说非常有效,因为它可以缩放到您尝试显示的数据集的确切大小。
此外,您还可以对对象执行一系列操作,这使您的生活和编码更易于阅读和编写。
我希望这可以帮助您解决您的问题。
I also struggled with this using geomap and data table combined. In my workaround I used the evalJSON() in prototype javascript framework to make the json string an object.
Then I loop over the object's length :
This worked very well for me because it scales to the exact size of the dataset you are trying to show.
Also you can do a whole whack of operations on an object which makes your life and coding easier to read and write.
I hope this helps you with your problem.
相同的 pb,并且不知道它是否可行:
这会创建一个空的 dataTable,而 JSON 输入的格式很好......
same pb, and don't know if it's feasible :
This create an empty dataTable whereas the JSON input is well formatted...