Hi Lee,
There is no problem to use the control as an off screen chart generator - the following sample code shows how to achieve this:
using Nevron.Chart;
using Nevron.Chart.WinForm;
using Nevron.GraphicsCore;
....
using (NChartControl chartControl = new NChartControl())
{
NChart chart = chartControl.Charts[0];
NBarSeries bar = new NBarSeries();
bar.Values.Add(10);
bar.Values.Add(20);
bar.Values.Add(30);
chart.Series.Add(bar);
chartControl.ImageExporter.SaveToFile("c:\\temp\\test.png", new NSize(400, 400), NResolution.ScreenResolution, new NPngImageFormat());
}
Hope this helps - let us know if you meet any problems...
On a different note we recommend PNG format for raster generation as it results in more crisp images (JPEG uses image compression that decreases the quality of the image).
Best Regards,
Nevron Support Team