Google图表中的分页?

MNS*_*MNS 5 html javascript google-visualization

我正在使用Google图表在我的网站上显示一些图表.事情是我有太多时期(按周),想象两年,我会有超过100周,图表真的变得难以理解,所以我想在月份之前添加某种分页,这可能吗?

$j('#Summary').Chart({
    chartClass: google.visualization.AreaChart,
    chartOptions: {
        backgroundColor: '#FFF',
        width: '100%',
        height: 400,
        hAxis: { title: 'time' },
        vAxis: { title: 'contents' },
        isStacked: true
    },
    chartData: data,
    setCertainty: true
});
Run Code Online (Sandbox Code Playgroud)

小智 1

也许这就是你正在寻找的

https://developers.google.com/chart/interactive/docs/examples#tablequerywrapper

是一个表格,但已分页

如果没有,请尝试实施某种系统来在数据之间移动范围。一些例子,会有帮助