Group: Forum Members
Last Active: 13 Years Ago
Posts: 5,
Visits: 1
|
Hello,
I'm trying to create a 3d chart and export it to EMF. When I do it seems to get flattened. Is it possible to create a 3d emf?
Thanks, Nick
|
Group: Forum Members
Last Active: Last Week
Posts: 3,054,
Visits: 4,009
|
Hi Nick, The control can only export emf files for 2D charts - this is because we use OpenGL for the 3D charts which is raster based. You can use the build in image exporter to export bitmaps which can then be embedded in EMF: using (Bitmap bmp = new Bitmap(200, 200, PixelFormat.Format32bppArgb)) { nChartControl1.ImageExporter.RenderToBitmap(bmp, false); // do something with bitmap }
Best Regards, Nevron Support Team
|