tbellmer
tbellmer

Reputation: 29

d3 Bubble Chart mixing v3 and v5 on scale

I am struggling with a mix of d3 v3 and v5 versions when trying to render a bubble map. Can someone assist this struggling D3.JS newbie with this relatively simple code on codepen? There is no error messages in teh console area so I am stuck...

enter code here

https://codepen.io/tbellmer/pen/NWPExJV

Upvotes: 0

Views: 60

Answers (1)

Stepan
Stepan

Reputation: 1054

In d3 documentation you can find that .domain and .range methods take array as argument. So, change

var countScale = d3.scaleLinear()
  .domain(1, 13)
  .range(3,15);

to

var countScale = d3.scaleLinear()
  .domain([1, 13])
  .range([3,15]);

Upvotes: 1

Related Questions