What problem does it solve? Canvas Power Apps ship no native charting controls, and Power BI is out of scope for this project, so there is no built-in way to render progress rings, gauges, sparklines, or value-driven icons. This Skill builds those visuals as SVG strings in Power Fx and displays them through an Image control's data URI. ## Core Features & Use Cases - Dynamic SVG via data URI: Builds "data:image/svg+xml," & EncodeUrl(...) strings with Power Fx values interpolated, so visuals react live to data. - Data-driven charts with Concat: Generates one SVG element per table row using Concat, Sequence/Index for positions, and running totals for donut slices. - Locale-safe rendering: Scales the viewBox so all coordinates are integers, avoiding decimal-separator failures in comma-locale environments. - Use Case: A project dashboard needs a red/amber/green progress ring per task and a multi-slice status donut. This Skill produces the Power Fx formulas that draw both, with clamped math, fixed category colors, and an "Other" slice for drifted values. ## Quick Start Ask the assistant to create a Power Fx formula for an Image control that renders a progress ring showing a task's PercentComplete value as an SVG data URI.