No it doesn't. no error message. I'm pretty new to this, but here is part of the code:
load data here....
bubbleChart.width(1000)
.height(300)
.dimension(deweyF)
.group(counts)
.x(d3.scale.linear().domain([0, 1000]))
.y(d3.scale.linear().domain([0, 1000]))
.r(d3.scale.linear().domain([0, 2500]))
.renderHorizontalGridLines(true)
.colors(['#3182bd', '#6baed6', '#9ecae1', '#c6dbef', '#dadaeb'])
.label(function(p){
return p.key;
})
.colorDomain([0, 1000])
.colorAccessor(function(d, i){return d.value;})
.keyAccessor(function(p) { return p.key;})
.radiusValueAccessor(function(p) {return p.value;})
.valueAccessor(function(p) {
return p.value;
})
.renderHorizontalGridLines(true)
.renderVerticalGridLines(true);