source: Dev/trunk/d3/src/scale/scale.js @ 76

Last change on this file since 76 was 76, checked in by fpvanagthoven, 14 years ago

d3

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.