I have a Winforms application that we are getting to work on Mono so we can run it on Mac. The application makes heavy use of ZedGraph, which is written entirely in C#.
ZedGraph works perfectly on Windows (obviously) and seems to work perfectly on Linux, but when I run the application on Mac OS X I get a nonsense graph. Essentially no data is visible.
If I make the title and legend invisible, I can plot and see the data points at least, but the labels of the X and Y axes, as well as the units, are not visible.
zedGraphControl1.GraphPane.Title.IsVisible = false;
zedGraphControl1.GraphPane.Legend.IsVisible = false;
This is better than no data at all, but ideally I want to have a legend, a title, and at the very least see the labels and units on the axes. Has anyone had any succesful experience using ZedGraph on Mac OS through Mono?