Production
Available
v1.0.0
Weekly Activity (LO)
Loan officer weekly rings
Live preview
Rendered from sample data fed via .data — exactly how your app feeds it.
Data contract
| Column | Type | Req |
|---|---|---|
| Label | string | — |
| Value | number | ✓ |
| Goal | number | ✓ |
| Format | string | — |
Emits ready,
error and
widget-select
when a mark is clicked —
wiring up drill-down.
Embed code
URL:
Colours:
<!-- 1. Load the widget (self-registers <afn-weeklyactivitylo>) -->
<script type="module" src="https://widgets-d.afnai.com/cdn/afn-weeklyactivitylo/v1/afn-weeklyactivitylo.js"></script>
<!-- 2. Drop the tag -->
<afn-weeklyactivitylo id="w"></afn-weeklyactivitylo>
<!-- 3. Feed your data -->
<script>
const el = document.querySelector('#w');
el.data = [
{"Label":"Applications","Value":18,"Goal":20,"Format":"count"},
{"Label":"Locks","Value":11,"Goal":14,"Format":"count"},
{"Label":"Funded Volume","Value":3200000,"Goal":4000000,"Format":"money"}
];
</script>
v1 gets non-breaking fixes automatically; a breaking change bumps to the next major and never touches your embed.
Bring-your-own-data: your app feeds the rows via .data.
Integration guide — framework setup, versioning and the origin allowlist.