Support min and max dates on time scale

This commit is contained in:
Tanner Linsley 2015-10-19 21:23:01 -06:00
parent bfabac945f
commit 35011e5ae3

View File

@ -91,8 +91,17 @@
scaleLabelMoments.push(labelMoment);
}, this);
this.firstTick = moment.min.call(this, scaleLabelMoments);
this.lastTick = moment.max.call(this, scaleLabelMoments);
if (this.options.time.min) {
this.firstTick = this.parseTime(this.options.time.min);
} else {
this.firstTick = moment.min.call(this, scaleLabelMoments);
}
if (this.options.time.max) {
this.lastTick = this.parseTime(this.options.time.max);
} else {
this.lastTick = moment.max.call(this, scaleLabelMoments);
}
} else {
this.firstTick = null;
this.lastTick = null;