I'm creating stock charts with svg and I'm having a problem when I set the stroke-width of my path elements to 1. Instead of making the lines more narrow, it just makes it the same size as stroke-width:2 but slightly transparent. I can't post an image of it though because I don't have enough reputation points...

My svg tag looks like so:

<div style="height:300px; width:400px; overflow:hidden">
<svg style="position:relative" height="10000" width="10000" version="1.1" xmlns="http://www.w3.org/2000/svg">
</svg>
</div>

And I'm adding path elements dynamically using javascript/jquery:

var shape = document.createElementNS("http://www.w3.org/2000/svg", "path");
$(shape).attr({"d":"...",
               "fill":"none",
               "stroke":color,
               "stroke-width":"1"});
$("svg").append(shape);

I left out the value for the path's d attribute as it was kind of long. Also, color is a string variable that is determined before hand as either "green", "red", or "black".

Is there something wrong in my code that is causing this or is it a different issue?

link|improve this question

If you can't post a picture, you probably can post a jsfiddle. – Marcin Sep 13 '11 at 12:56
feedback

2 Answers

up vote 4 down vote accepted

This is probably due to the anti-aliasing applied in most SVG implementations. When the line width goes near or below 1, antialiasing makes it so that half-covered pixels are rendered partially opaque. With the default transforms and viewport in place, your one-pixel line probably sits exactly on the border between two physical pixels, so they're each half covered, leading to an overall 50% transparency. With a black line on a white background, this yields a 50% gray.

link|improve this answer
Is there some way I can change that? When I played around with the svg examples at w3schools.com, lines with stroke-width:1 were showing up just fine without the transparency. – MattL922 Sep 13 '11 at 11:58
It depends on the renderer; no idea if there is a way to influence this. There might be a way to turn of anti-aliasing, but there is no standard way that I am aware of. – tdammers Sep 13 '11 at 12:04
2  
Ok I googled this and was able to figure it out. All I have to do is add shape-rendering:crispEdges to the style of the path element and it shows up as a 1px wide line now. Thanks for the help! – MattL922 Sep 13 '11 at 12:17
@MattL922 You can try to reduce the graphic-size, e.g. instead height="10000" width="10000" in the root tag, use something that would fit on a normal screen. Afterwards try to use integers instead of floats for coordinates. That way, the probability of having a line rendered on a full pixel is much higher. – feeela Sep 13 '11 at 12:36
@feeela Yeah I'm going to start working on that next by scaling and transforming the svg. Right now I'm plotting the whole price history and shifting the svg left/right based on a slider value - which is why the dimensions are so huge. Also I converted the prices to cents so I wouldn't get float coords, which def helped. – MattL922 Sep 13 '11 at 12:44
feedback

If the lines are straight horisontal or vertical just place the lines at half a pixel off, like x="1.5px".

Another way is to apply some CSS to the lines:

.thelines{
    shape-rendering:crispEdges
}

The spec chapter on shape-rendering property.

link|improve this answer
The first method looks like cheat, but it works for me better than crispEdges, so vote up! – szamil Nov 26 '11 at 17:50
Thanks, szamil! But actually it's not a cheat because the if the actual line is placed at exact coordinates the stroke is painted on both sides of it, and you actually see two-pixel half transparent line, not a one-pixel opaque. – Spadar Shut Nov 26 '11 at 20:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.