Ok, I figured it out. I had to configure the platform specific handler.
var pf = Platform.Detect;
if (pf.IsWpf)
{
pf.Add(typeof(Plot.IHandler), () => new Eto.OxyPlot.Wpf.PlotHandler());
}
else
{
Console.WriteLine($"{pf.ID} is not supported.");
return;
}
new Application(pf).Run(new MainForm());
On Tuesday, November 18, 2014 at 12:14:43 AM UTC+1, curtis wrote: