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?
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.