From d894d0efe5e4560ab8bcd71538c830fdb7bc3e01 Mon Sep 17 00:00:00 2001 From: Manuel Schallar Date: Thu, 11 Jun 2015 12:15:51 +0200 Subject: [PATCH] changing the properties from getDataRange + according to the documentation + changed from 'start' and 'end' to 'min' and 'max' --- lib/timeline/Core.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/timeline/Core.js b/lib/timeline/Core.js index b90b841e..348f35ad 100644 --- a/lib/timeline/Core.js +++ b/lib/timeline/Core.js @@ -496,8 +496,8 @@ Core.prototype.getDataRange = function() { } return { - start: start, - end: end + min: start, + max: end } };