minified scatter size fix

This commit is contained in:
Bob Monteverde 2012-10-24 16:15:11 -04:00
parent 396a778c0d
commit ef2a89a193

View File

@ -7803,7 +7803,7 @@ nv.models.scatter = function() {
, z = d3.scale.linear() //linear because d3.svg.shape.size is treated as area , z = d3.scale.linear() //linear because d3.svg.shape.size is treated as area
, getX = function(d) { return d.x } // accessor to get the x value , getX = function(d) { return d.x } // accessor to get the x value
, getY = function(d) { return d.y } // accessor to get the y value , getY = function(d) { return d.y } // accessor to get the y value
, getSize = function(d) { return d.size || 1 } // accessor to get the point size , getSize = function(d) { return d.size || 1} // accessor to get the point size
, getShape = function(d) { return d.shape || 'circle' } // accessor to get point shape , getShape = function(d) { return d.shape || 'circle' } // accessor to get point shape
, forceX = [] // List of numbers to Force into the X scale (ie. 0, or a max / min, etc.) , forceX = [] // List of numbers to Force into the X scale (ie. 0, or a max / min, etc.)
, forceY = [] // List of numbers to Force into the Y scale , forceY = [] // List of numbers to Force into the Y scale