Wojciech Kulik
Wojciech Kulik

Reputation: 8450

Page buttons don't work in Google chart table

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

Answers (1)

Jen Chueh
Jen Chueh

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

Related Questions