Creating a bar/line graph in a window. Box not drawn 1-pixel thick.

I am using the following line of code to draw the graph lines and the plot lines for my graph. I specify the rectangle to be drawn with a height of 1 pixel in order to make it line-like. When I run the code though the Boxes are very thick (look at horizontal graph lines). I’d like to force the boxes to be as thick as a line would be.

GUI.Box(new Rect(100, 30 * graphDraw + 40, GraphWindow.width - 300, 1), “”);

Also, it’s difficult to see in the picture however going through the centers of each of the boxes looks like the correct, 1-pixel tall, line. I’m not sure what this signifies.

Probably need to look at the GUIStyle used for the box. If you recall, GUIStyles include padding, margin and borders, so I’d guess that one of those is making your boxes bigger.