source: Dev/trunk/d3/examples/splom/cross.js @ 76

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

d3

File size: 151 bytes
RevLine 
[76]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.