Commit 864ef028 authored by Anthony Ryan's avatar Anthony Ryan

Fix an unrelated style guide violation merged earlier today

parent c14eaf45
...@@ -3310,11 +3310,11 @@ Licensed under the MIT license. ...@@ -3310,11 +3310,11 @@ Licensed under the MIT license.
var pointRadius; var pointRadius;
var radius; var radius;
if (series.points.show) { if (series.points.show) {
pointRadius = series.points.radius + series.points.lineWidth / 2; pointRadius = series.points.radius + series.points.lineWidth / 2;
radius = 1.5 * pointRadius; radius = 1.5 * pointRadius;
} else { } else {
pointRadius = series.points.radius; pointRadius = series.points.radius;
radius = 0.5 * pointRadius; radius = 0.5 * pointRadius;
} }
octx.lineWidth = pointRadius; octx.lineWidth = pointRadius;
octx.strokeStyle = highlightColor; octx.strokeStyle = highlightColor;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment