页面按钮在 Google 图表中不起作用
我尝试在 Google 图表表中启用页面按钮,但它不起作用: http://code.google.com/apis/ajax/playground/ ?类型=可视化#表 将最后一行更改为: Visualization.draw(data, {page: 'enabled', pageSize: 1});
之后,按钮可见,但不起作用。
I try to enable page buttons in Google Chart Table, but it doesn't work:
http://code.google.com/apis/ajax/playground/?type=visualization#table
Change last line to: visualization.draw(data, {page: 'enabled', pageSize: 1});
After that, buttons are visible, but don't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
页面选项的值实际上是“禁用”(默认)或“启用”。
如果将最后一行更改为
分页应该可以工作。
The values for the page option is actually 'disable'(default) or 'enable'.
If you change the last line to
the paging should work.