Hello,
I'm trying to use BGRASVG to draw a picture that need to be updated (changing elements colors, text strings etc.), and I have two questions:
1. Is it possible to redraw only selected (i.e. changed) SVG elements? There is TSVGElement.Visible property, which disables element drawing (in TSVGElement.Draw), but setting it to False doesn't change its value (TSVGElement.SetVisible setter is doing something in SVG attributes, but .Visible remains on True). I can add and control another property there, but modifying existing BGRASVG code is something I would avoid.
2. What need to be done to update <text> element string (content)? After changing TSVGElement.DOMElement.TextContent it has new value, but when redrawing, it keeps beeing drawn with old value. I can reload SVG file after change, but this is rather not optimal solution.
Are there any other SVG libraries that maybe can handle this better/faster?