Reputation: 8450
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.
Upvotes: 0
Views: 765
Reputation: 36
The values for the page option is actually 'disable'(default) or 'enable'. If you change the last line to
visualization.draw(data, {page: 'enable', pageSize: 1});
the paging should work.
Upvotes: 2