Fixes start and end timestamps to show a valid date

This commit is contained in:
Javier Arce 2013-11-08 16:14:12 +01:00
parent b627d93efa
commit c57472da78

View File

@ -264,8 +264,8 @@
getKeySpan: function() {
return {
start: this.options.start,
end: this.options.end,
start: this.options.start * 1000,
end: this.options.end * 1000,
step: this.options.step,
steps: this.options.steps
};