Bitmap bmp = new Bitmap(300,200); Graphics wgr = Graphics.FromImage(bmp); wgr.DrawLine(Pens.Aqua,0,0,300,200); bmp.Save(Response.OutputStream,ImageFormat.png); The above code will help us to create a line at runtime inside asp.net webpage. Please help me to create a line similarly in xtrareport at runtime...