Cole Tobin

Results 94 comments of Cole Tobin

I'm not touching `XAxis`. OxyPlot, when rendering is. It tries to render the annotation, but `XAxis` and `YAxis` of the annotation is null. With my change to explicitly call `EnsureAxes`,...

I am using `OxyPlot.Avalonia`, but all my objects (the controller, model, axes, etc.) are all normal OxyPlot objects. I've uploaded the repo here: [colejohnson66/OxyPlotNreExample](https://github.com/colejohnson66/OxyPlotNreExample). Here's a ZIP of that repo:...

I see that `StrokeThickness` for path annotations is the thickness of the plotted line. Maybe it would be better to have a naming scheme? So, text annotations' `Background` and `Stroke`...

This also is a per page thing it seems. Page 1 reuses the same icons each time, but page 2 manages to load the new one. Opening the PDFs in...

![Screenshot 2022-05-13 123416](https://user-images.githubusercontent.com/11381599/168328093-c63d5492-2bbc-43a9-8d3d-62b032656858.png)

The issue is caused by an empty string as the image name (the first parameter to `ImageSource.FromStream`). If I give the different images a name unique to the URI I...

https://user-images.githubusercontent.com/11381599/171906817-ee329be8-38b4-4d00-8210-0b75ea407b73.mp4 **Converter:** ```cs public class OpacityFadeVisibilityConverter : IMultiValueConverter { private static readonly double FADE_CHECK = 50; public static readonly OpacityFadeVisibilityConverter Instance = new(); public object Convert(IList values, Type targetType, object?...

Every time the `` moves, the converter is being called (breakpoints are hit). The returned value is just ignored until the outer `` scrolls.

Yep; It's because of the opacity mask. Changing it to `` (and the transparent stops to white) works fine. https://user-images.githubusercontent.com/11381599/171933614-065d847f-aee9-49b6-8930-1534d8b31832.mp4

It gets weirder: It works in the XAML previewer in Rider, just **not** in our theme demo. The preview markup is *literally* identical to what's in the theme demo. ```axaml...