image

image, tile type

The image tile displays a single image provided as a scalar text value. The text is typically a URL that the browser can fetch when rendering the dashboard.

show image "Logo" with "https://placehold.co/320x180.png"

The tile expects a scalar text. If the source is stored in a table, aggregate it before display:

table Assets = with
  [| as Url |]
  [| "https://placehold.co/320x180.png" |]

show image "From table" with single(Assets.Url)

The Envision compiler only enforces the scalar text requirement. Any image-format restrictions are handled at render time by the browser.

User Contributed Notes
0 notes + add a note