Hi, I created a small plugin to use for an app where I have some custom SVG elements that are rendered based on some dynamic data. They work great on desktop however they don’t display at all on mobile, the spot where they’re supposed to be is completely blank.
I can share code if necessary but all I’m doing is creating an outer div component with an svg element as its child appended with a g element and two circle elements. I’m inserting the svg into the html of the container like so:
container.html(svg);
And then appending the container to the canvas. Not sure if I’m missing some configurations or something but any help would be appreciated!