@@ -50,6 +50,7 @@
}
var graph = new Escher.ScatterGraph();
+ graph.radius = 5;
graph.box.min.set(-500, -50);
graph.box.max.set(500, 50);
graph.position.set(800, 600);
@@ -14,7 +14,7 @@ function ScatterGraph()
/**
* Radius of each point represented in the scatter plot.
*/
- this.radius = 3.0;
+ this.radius = 5.0;
ScatterGraph.prototype = Object.create(Graph.prototype);