VisualMelon

Results 435 comments of VisualMelon

This is looking good now (few typos, but otherwise public API looks nice), and provides a nice foundation we can build on in future (can imagine providing regions/areas (maybe that...

This is all made more complicated by having to know whether to call `PlotModel.GetDefaultColor`

Yes, this would be useful. You can perform hit-testing for axes with the `PlotModel.GetAxesFromPoint` method at the moment, but it's not quite what you describe (would need a bit of...

I'd be glad to if you can throw me a link: I don't see it in your fork, but I might just be missing something.

Some interesting stuff in there, couple of notes from a quick scan: - Would prefer `Annulus` over `Hypoid` (I think hypoid is a more specific concept? feel free to correct...

I'm not aware of any wrappers. It may be possible to use it from C++/CLI in some capacity, but it's not something I've ever tried.

At present there is no support for text wrapping. This was implemented in https://github.com/oxyplot/oxyplot/pull/1556 but the design was never finalized. If you can describe your use-case and how you'd expect...

OxyPlot won't support you in adding controls over the TextBlocks. > I want to set max width for label and set wrap to true for the labels I won't close...

There's no metadata provided about where the labels are rendered, so you'd have to intercept the rendering in `HorizontalAndVerticalAxisRenderer.RenderMajorItems` and export that information somewhere. You'd need to extend `HorizontalAndVerticalAxisRenderer` and...

#1998 adds `LabelAngle`; detection of overlapping labels would be nontrivial, but certainly something that could be done if someone could present a sane design.