I do the following when drawing:
Matrix m = new Matrix()
m.Scale(_zoomX, _zoomY)
e.Graphics.Transform = m
e.Graphics.DrawLine(...) ' line representation '
e.Graphics.DrawString(...) ' line text '
Now, the text became also scaled. Is it possible to avoid it?