VisualMelon
VisualMelon
No: the implementation does not support non-even spacing. Would need an overhaul.
@rexfie Is this with an `OxyPlot.Pdf.PdfExporter` or an `OxyPlot.PdfExporter`? The former supports Unicode, the later does not (at least that's been my experience using the former with .NET Framework and...
@rexfie it's basically the same interface; just you need `OxyPlot.Pdf.dll` and its dependencies. It's .NET Framework only because `PdfSharp.dll` requires `System.Drawing`. There are efforts to port `PdfSharp` to .NET Standard...
I have now reproduced this. I can get Chinese characters (or at least a subset; not all 'European' characters remain working) working by using the 'simhei' font. I know very...
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
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...
I wasn't aware the existing package had such issues: I'll look into today. 1. Should be; I use it against .NET 8 for Work, but I don't know which Avalonia...
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...
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...
Which PDF exporter are you using? The one in the core library has poor unicode support, and it is generally better to use the one provided in `OxyPlot.SkiaSharp` which is...