source: Dev/branches/rest-dojo-ui/Cartis/d3/examples/splom/cross.js @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 151 bytes
Line 
1function cross(a) {
2  return function(d) {
3    var c = [];
4    for (var i = 0, n = a.length; i < n; i++) c.push({x: d, y: a[i]});
5    return c;
6  };
7}
Note: See TracBrowser for help on using the repository browser.