Google Chart API:在启用分页时,页码是否可以显示在表格中?

时间:2012-07-23 08:31:35

标签: google-visualization

我使用Google Chart API。

启用分页时,页码是否可以显示在表格中?

1 个答案:

答案 0 :(得分:1)

页码将在提供表格选项时使用"page: 'enable'"自动显示。

   var tab_options = {title: 'Table View',
        showRowNumber: true,
        width: '100%',
        hieght: '50%',
        page: 'enable',
        pageSize: '10',
        // pagingSymbols: {prev: ['< prev'],next: ['next >']},
        allowHtml: true,
        alternatingRowStyle: true}

    // Instantiate and Draw our Table
    var table = new google.visualization.Table(document.getElementById(div_id));

    table.clearChart();
    table.draw(TableData, tab_options);

详情请参阅here