source: Dev/branches/rest-dojo-ui/Cartis/d3/src/scale/scale.js @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 166 bytes
Line 
1d3.scale = {};
2
3function d3_scaleExtent(domain) {
4  var start = domain[0], stop = domain[domain.length - 1];
5  return start < stop ? [start, stop] : [stop, start];
6}
Note: See TracBrowser for help on using the repository browser.