I am building an SVG image to encapsulate a set of metrics and display in one easy to read image. The metrics are represented in various spots in the app using icons from the formatting rules.
I am wondering if there is a way to have our SVG code gain access to the list of AppSheet app icons?
Normally you could do that with an SVG but, for security reasons, AppSheet blocks our ability to load external content or run code inside of SVGs.
Instead, you can include the icons directly in your SVG code. AppSheet uses fontawesome for the in-app icons - you should be able to find the respective icons along with their code there
Note that a lot of the icons require you to pay for a fontawesome license.
Thanks @Jonathon ! I did come to the conclusion that I needed to do what you describe.
But I am having a heck of a time trying to control placement. Is it possible?
Below is example code for a stethoscope icon. It is drawn with a Path tag. My goal is to be able to place several such icons annotated with text and numbers (similar to the example you showed in the Community a while back!)
In an online SVG viewer tool I can assign this to a group element with an svg and the path and then using a âuseâ element, I can specify the x,y location. I can also adjust the viewbox, width and height to adjust relative size.
If I try doing this within an Image column in the app it doesnât work. Maybe not supported? I can show the straight Path element but it obviously uses the default starting location. While I can adjust the size, I canât seem to figure out how to relocate it within the viewbox. What am I missing?