4

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.

No Data

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.

No Axes, Title, nor Legend

        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?

shieldstroy
  • 1,307
  • 1
  • 10
  • 24
  • What you could do is upload your image somewhere like http://imageshack.us/, then put the link in your post. That is always possible. – Jan Dörrenhaus May 17 '13 at 23:37
  • Yes, good idea. I just added links to two images, thanks. – shieldstroy May 21 '13 at 17:05
  • 3
    this might be a bit late... but still might help you. This kind of beaviour look like an exception is thrown and fail silently. this trigger the onpaint so your getting a part of your graph drawn – Rémi Aug 15 '13 at 15:40

0 Answers0