Hi Tim,
We have not tried the approach, although long time ago we had a client that we think managed to do it. The Nevron Chart can of course create a memory stream with an image in all formats supported by .NET - bmp, png, jpeg, tiff, targa etc. For example:
NChartControl chart = new NChartControl();
// configure chart here
// create a byte array, containing a BMP image of the chart
MemoryStream memoryStream = new MemoryStream();
chart.ImageExporter.SaveToStream(
memoryStream,
new Nevron.GraphicsCore.NSize(400, 300),
new Nevron.GraphicsCore.NResolution(96, 96),
new Nevron.GraphicsCore.NBitmapImageFormat());
byte[] bytes = memoryStream.ToArray();
Best Regards,
Nevron Support Team