0

I am trying to have different plot symbol for each of the groups of points I have. The code is here. I used this piece of code

shape: shapes[i]

But am unable to get different symbols. I am able to only get circles. Where am I going wrong?

Dinesh
  • 2,194
  • 3
  • 30
  • 52

1 Answers1

0

Just add the below code before you call d3.select('#chart svg')

//We want to show shapes other than circles.
chart.scatter.onlyCircles(false);

Hope it helps.

shabeer90
  • 5,161
  • 4
  • 47
  • 65