VisualMelon

Results 435 comments of VisualMelon

For Western script, Segoe is ostensibly clearer, and I'd be cautious about changing this in any case. What is your use-case for this? Generally it should be easy to change...

The WPF/XAML provision has moved to https://github.com/oxyplot/oxyplot-contrib - I'm afraid I can't suggest a workaround. Feel free to open a corresponding issue there; however, per #111, the `AxisChanged` event is...

You could implement the routed event in an inheriting type. Obviously you'll need to use this type in your XAML. It's not ideal, but should be workable. Something like: ///...

Is this WPF/Winforms or one of the exporters? This looks like the sort of problems we get with the default SVG exporter (the solution generally to use a platform specific...

Which SVG exporter specifically? If you are using `OxyPlot.SvgExporter` at the moment, can you use e.g. `OxyPlot.WindowsForms.SvgExporter` as indicated above? (it has better support for test measurement). If that doesn't...

OK, there probably won't be an easy solution then; the built-in SVG and PDF exporters doesn't have good font support, and we aren't really intending to work on them. If...

@doorman02 does throwing in an extra pair of `\r\n` help? (or is that excessive?)

Can you expand on a specific use-case for the series to warrant inclusion? It's pretty simple, so shouldn't introduce much maintenance overhead. Are there implementations in other libraries that we...

Mostly likely the variation in `y` values is very small, and the default string format (G6) is truncating them. E.g. `0.00010000009.ToString("G6")` will give you back `0.0001`. You can change the...

Presently I'm not aware of the library performing automatic multi-lining of any text. Linking #1556 (might be that we can do it in on the rendering side with the common...