Browse Source

changing the properties from getDataRange

+ according to the documentation
+ changed from 'start' and 'end' to 'min' and 'max'
flowchartTest
Manuel Schallar 9 years ago
parent
commit
d894d0efe5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/timeline/Core.js

+ 2
- 2
lib/timeline/Core.js View File

@ -496,8 +496,8 @@ Core.prototype.getDataRange = function() {
}
return {
start: start,
end: end
min: start,
max: end
}
};

Loading…
Cancel
Save