Hi Naveen,
You have to specify size/resolution of the generated image in case the chart document is not connected to a view and cannot obtain those parameters from there - the following code shows how to generate a 300x300 image with screen resolution (96dpi):
MemoryStream memStream = new MemoryStream();nChartControl.ImageExporter.SaveToStream(memStream,
new NSize(300, 300), new NResolution(96, 96), new NJpegImageFormat());