diff --git a/src/plugins/plugin.legend.js b/src/plugins/plugin.legend.js index 1f4fe1ad96e..7ce0eaaba8d 100644 --- a/src/plugins/plugin.legend.js +++ b/src/plugins/plugin.legend.js @@ -370,9 +370,8 @@ var Legend = Element.extend({ // Recalculate x and y for drawPoint() because its expecting // x and y to be center of figure (instead of top left) var radius = boxWidth * Math.SQRT2 / 2; - var offSet = radius / Math.SQRT2; - var centerX = x + offSet; - var centerY = y + offSet; + var centerX = x + (fontSize / 2); + var centerY = y + (fontSize / 2); // Draw pointStyle as legend symbol helpers.canvas.drawPoint(ctx, legendItem.pointStyle, radius, centerX, centerY);