Hi Nick,
You'll have to set the background fill style to transparent and disable the control frame - for example:
using (NChartControl control = new NChartControl())
{
NCartesianChart chart = (NCartesianChart)control.Charts[0];
NBarSeries bar = new NBarSeries();
bar.Values.Add(10);
bar.Values.Add(20);
bar.Values.Add(30);
chart.Series.Add(bar);
control.BackgroundStyle.FillStyle = new NColorFillStyle(Color.Transparent);
control.BackgroundStyle.FrameStyle.Visible = false;
control.ImageExporter.CopyToClipboard(new NSize(400, 400), NResolution.ScreenResolution, new NEmfImageFormat());
}
places a 400x400 emf file to the clipboard.
Best Regards,
Nevron Support Team