Open Ipqbfmgu opened 7 months ago
See https://github.com/oxyplot/oxyplot-avalonia/issues/65
Edit: some clearer notes at the bottom of this issue: https://github.com/oxyplot/oxyplot-avalonia/issues/66#issuecomment-2249983868
Hi, any new info about Avalonia 11 support?
Maybe author can update nuget
The "merge" to Avalonia 11 was last year, and since then, no work has been done ... maybe some of us could merge the project. make the changes and create a new Nuget package. I don't see that the Author will be back to maintain this package.
Per #65, you need to use the 2.1.0-Avalonia11 package
dotnet add package Oxyplot.Avalonia --version 2.1.0-Avalonia11
There are additional notes on style changes in the same thread.
How we will deal with the 10/11 divide going forward is not clear.
Hello, and thanks for the answer. I tried that, but it didn't work, so I wrote my answer.
Is the new version compatible with dotnet 8? I'm evaluating the migration to Avalonia11 and dotnet 8, and looks like this tool is not ready for this
Not even the code in GitHub works I cloned the GitHub code, and not even that worked on my machine. I could go from there and try to make it work for my setup and possibly propose a PR, but I'm having problems there.
I'm familiar with the problems regarding maintenance of the OpenSource projects Can you guys share the problems that you are having? Is financing? Are developers? Is what? Maybe it could be developers and companies that are willing to help. Without talking, there is no way to solve the issues. I'm not the only one with this problem, and I'm sure I'm not willing to help.
thanks Paulo Aboim Pinto
I wasn't aware the existing package had such issues: I'll look into today.
The main problem is with the examples. I have some issues accessing avaloniaUI Nuget repository.
I could not run any other example than AvaloniaExamples
In the end, to make it work, I just added the OxyPlot.Avalonia, to my project, changed the TargetFrameowork to net8.0 and added the new Style referenced in the example, and it's working.
Looks like you have the Avalonia nightly stream configured: if you disable that in the list of Nuget sources it should go through. (I've removed the NuGet.config that was causing this now)
Testing on Win10, can't find any obvious problems running the code-base under Avalonia 11.0.0 or 11.1.0 with .NET 8. Did you get it to work with the package then?
not with the package ... I will try again ...
Minimal example using 2.1.0-Avalonia11 package; changes commented with the word "Added": https://gist.github.com/VisualMelon/d23a49b41ad020d8cb73ca8cec4ebd68
I can make a repo and put the changes from the template in a commit if it would help people.
Steps
<PackageReference Include="OxyPlot.Avalonia" Version="2.1.0-Avalonia11" />
to the csprojdotnet add package OxyPlot.Avalonia --version 2.1.0-Avalonia11
, specifying the project if necessaryStylesInclude
to App.xaml styles: <StyleInclude Source="avares://OxyPlot.Avalonia/Themes/Default.axaml"/>
xmlns:oxy="using:OxyPlot.Avalonia"
in XAML as necessaryOxyPlot.PlotModel
somewhere, and bind it to the Model
of an oxy:PlotView
: make sure it has at least the Title
property set otherwise it will be blank
Is Avalonia11 supported?