Results 18 comments of Alexander Makarov

Issue is still exists (on PostgreSQL 13.4). Any attempts to resolve it or workarounds?

Still experience the problem. @nurdtechie98 is apply process is still going in Google? Any news?

I guess it is popular WiFi dongle. Still no luck? Only Windows?

Have tried to use go-charts (or, any SVG-output library) which is then rendered by `canvas.NewImageFromResource` from Fyne. ![Example of the file](https://github.com/user-attachments/assets/4f5b9156-51d8-45d8-b435-57bc1b536387) It renders few seconds!!! If try to resize window...

@ErikKalkoken could you please share a code snippet or link in docs how to configure Fyne's Image to don't rerender automatically? Because I want to resize SVG, not to rerender....

@ErikKalkoken sorry, but you are explaining "external" chart update. And in your example it happens very rare - once per 3 seconds. I am talking about Fyne's window resize events...

Actually I've expected to get code which instructs Fyne to don't reload SVG Resource each frame/refresh event (which includes parsing of XML code and creating tree of primitives to draw)...

@andydotxyz could you please look at my code snippet and on result? ``` package main import ( "bytes" "regexp" "strings" "fyne.io/fyne/v2" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/canvas" "fyne.io/fyne/v2/container" "github.com/wcharczuk/go-chart/v2" ) func main() { a...

@andydotxyz thank you for your reply. >removing all the strange forcing of min-size so it fills the space? I've added it to replicate what I need in my app/layout. When...

I need in: - 2-lines graph (or bar chart) "income & expenses" by month. - Pie charts. - 100% stacked charts. Unfortunately I don't want to draw them from primitives...