resizing plots generated using R.Net causes application to crash

296 views Asked by At

I'm using R.Net library.

This is my sample code:

REngine.SetEnvironmentVariables(); 
REngine engine = REngine.GetInstance();
engine.Evaluate("cars <- c(1, 3, 6, 4, 9)");
engine.Evaluate("plot(cars)");

And the chart appears but when I try to resize the window with it my .Net application crashes/

Does anyone of you know this issue and how to handle that?

0

There are 0 answers