Hi Elvira,
The code below does not use the created bitmap in any way. The following code snippet shows how to render a bitmap and assign it to a picture box (this is the most simple approach you can use):
System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(pictureBox1.Width, pictureBox1.Height, PixelFormat.Format32bppArgb);
nChartControl1.ImageExporter.RenderToBitmap(bitmap, false);
pictureBox1.Image = bitmap;
Hope this helps - let us know if you meet any problems.