diff --git a/js/ScatterPlot.ts b/js/ScatterPlot.ts index cc858f2..27224c9 100644 --- a/js/ScatterPlot.ts +++ b/js/ScatterPlot.ts @@ -74,7 +74,7 @@ class ScatterPlot extends Path { const dataPoint = this.dataSet[ i ]; if ( dataPoint.isFinite() ) { const viewPoint = this.chartTransform.modelToViewPosition( dataPoint ); - shape.moveToPoint( viewPoint ); + shape.moveTo( viewPoint.x + this.radius, viewPoint.y ); // need to move to where circle actually starts shape.circle( viewPoint.x, viewPoint.y, this.radius ); } }