I have been searching for a way to customize the color of a scatter chart's plot, and I came across an example that uses d3 code within the chart http://jsfiddle.net/ot19Lyt8/9/
onmouseover: function (d) {
d3.select(d3.selectAll("circle")[0][d.index]).style("fill", "red");
d3.select(d3.selectAll("circle")[1][d.index]).style("fill", "red");
d3.select(d3.selectAll("circle")[3][d.index]).style("fill", "red");
},
While this example changes the plot color when hovering over it, I would like to be able to assign different colors to each plot upon loading.