(d)
| 18 | , z = d3.scale.linear() //linear because d3.svg.shape.size is treated as area |
| 19 | , getX = function(d) { return d.x } // accessor to get the x value |
| 20 | , getY = function(d) { return d.y } // accessor to get the y value |
| 21 | , getSize = function(d) { return d.size || 1} // accessor to get the point size |
| 22 | , getShape = function(d) { return d.shape || 'circle' } // accessor to get point shape |
| 23 | , forceX = [] // List of numbers to Force into the X scale (ie. 0, or a max / min, etc.) |
no outgoing calls
no test coverage detected
searching dependent graphs…