Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stroke on rect in D3 blurry

Tags:

svg

d3.js

I am trying to draw a rectangle with a dashed strong in SVG using D3 but when I do the top and bottom dashed lines are blurry. Here is my code:

var width = 400,
        height = 400;

var svg = d3.select('body')
        .append('svg')
            .attr('width', width)
            .attr('height', height)
        .append('g')
            .attr('transform', 'translate('+height/2+','+width/2+')');

svg.append('rect')
    .attr('width', '185')
    .attr('height', '45')
    .attr('x', -height/2+185/2)
    .attr('y', -width/2+10)
    .attr('fill', 'rgba(0,0,0,0)')
    .attr('stroke', '#2378ae')
    .attr('stroke-dasharray', '10,5')
    .attr('stroke-linecap', 'butt')
    .attr('stroke-width', '3')

http://jsfiddle.net/sigscotty/9H9PX/

Here is what it looks like in the browser:

enter image description here

Any way to get the top and bottom crisp looking like the sides?

like image 409
Scotty Bollinger Avatar asked Jan 13 '14 20:01

Scotty Bollinger


1 Answers

shape-rendering is probably what you want. shape-rendering="crispEdges" should do it for your case. Alternatively you could adjust the y and height attributes so that the top and bottom positions are + 0.5.

like image 121
Robert Longson Avatar answered Nov 16 '22 04:11

Robert Longson