Group: Forum Members
Last Active: 14 Years Ago
Posts: 3,
Visits: 1
|
as far as i understand , there is no support for exporting charts as bmp files in nevron library. am i understand correctly? is there any support for to do that? if yes , how can we do that ?
|
Group: Forum Members
Last Active: Last Week
Posts: 3,054,
Visits: 4,009
|
Hello Fatih, You can take a look at the Help Documentation: Chart for .NET > User's Guide > Image Export To save an image in a file you can use SaveToFile method of NImageExporter class. The parameters of this method specifies the file name, the size, the resolution and the image format: chartControl.ImageExporter.SaveToFile("c:\\temp\\temp.bmp", new NSize(200, 200), NResolution.ScreenResolution, new NBitmapImageFormat()); Nevron Chart support the export of the following image formats: BMP, PNG, JPEG, TIFF, GIF, PDF, SWF, XAML, SVG, EMF.
Best Regards, Nevron Support Team
|
Group: Forum Members
Last Active: 14 Years Ago
Posts: 3,
Visits: 1
|
thank you
|