Why such big text?
You create a Graphics object from the label, as in
GFX = yourlabel.CreateGraphics()
And then, you draw it, like
GFX.DrawLine(0, 0, yourlabel.width, yourlabel.height)
Draws a line going from the top left to the bottom right of the label.