我有一个跨度图,例如从1995年到2005年,无论该范围内有多少数据。
因此,我只是在开始数据之前添加结束日期,并在结束日期之后附加一个null
值。效果很好,唯一的问题是缩放无法正确显示数据-确实会将数据扩展到整个宽度:
因此,我认为缩放范围(1)中黄色突出显示的矩形之外的区域不可见。
如何避免这种情况-甚至是错误?
这里是完整的JsFiddle Example。我要强迫轴显示整个预期范围的操作:
data.push([new Date(1995, 0, 1), null]);
// add the real data to the data-array here
data.push([new Date(2005, 0, 1), null]);