谷歌图表时间轴水平滚动

时间:2017-05-04 16:33:38

标签: javascript charts google-visualization data-visualization timeline

我有一个时间线图表,非常类似于此页面上的第一个示例(https://developers.google.com/chart/interactive/docs/gallery/timeline)。

我在Y轴上做活动(做午餐,吃饭,ecc),在X轴上我有时间。

我想启用水平滚动和图表放大/缩小(如本主题Google chart horizontal scrollbar中所述)。但我似乎无法让它发挥作用。

是否有某种方法可以在时间线图表上启用水平滚动?

非常感谢。

的Alessandro

1 个答案:

答案 0 :(得分:7)

configuration options图表上没有用于滚动和缩放的标准Timeline

但你可以使用css进行水平滚动

在图表选项中设置特定宽度 - > width: 1200

并将其包裹在宽度较小的容器中 - > overflow-x: scroll;

请参阅以下工作代码段以获取示例...



google.charts.load('current', {
  callback: drawChart,
  packages: ['timeline']
});
function drawChart() {
  var container = document.getElementById('chart_div');
  var chart = new google.visualization.Timeline(container);
  var dataTable = new google.visualization.DataTable();

  dataTable.addColumn({ type: 'string', id: 'President' });
  dataTable.addColumn({ type: 'date', id: 'Start' });
  dataTable.addColumn({ type: 'date', id: 'End' });
  dataTable.addRows([
    [ 'Washington', new Date(1789, 3, 30), new Date(1797, 2, 4) ],
    [ 'Adams',      new Date(1797, 2, 4),  new Date(1801, 2, 4) ],
    [ 'Jefferson',  new Date(1801, 2, 4),  new Date(1809, 2, 4) ]]);

  chart.draw(dataTable, {
    width: 1200
  });
}

#chart_wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  width: 400px;
}

<script src="https://www.gstatic.com/charts/loader.js"></script>
<div id="chart_wrapper">
  <div id="chart_div"></div>
</div>
&#13;
&#13;
&#13;