Google图表时间表-定义范围

时间:2018-08-01 20:56:49

标签: javascript charts google-visualization timeline

是否可以定义时间线图的范围?

我看到范围是根据数据自动定义的(图像1 ),但是即使没有数据要显示(图像2 < / strong>)。

图片1

enter image description here

图片2

enter image description here

1 个答案:

答案 0 :(得分:0)

使用以下图表选项,为x轴(hAxis)提供一个最小和最大日期...

hAxis: {
  minValue: new Date(2018, 0, 1),  // example dates...
  maxValue: new Date(2018, 11, 1)
}