AFN AFN Widgets
Gallery
Operations Available v1.0.0

Underwriter Weekly Activity

Underwriter weekly rings

Live preview

Rendered from sample data fed via .data — exactly how your app feeds it.

Data contract

ColumnTypeReq
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-weeklyactivityuw>) -->
<script type="module" src="https://widgets-d.afnai.com/cdn/afn-weeklyactivityuw/v1/afn-weeklyactivityuw.js"></script>

<!-- 2. Drop the tag -->
<afn-weeklyactivityuw id="w"></afn-weeklyactivityuw>

<!-- 3. Feed your data -->
<script>
  const el = document.querySelector('#w');
  el.data = [
    {"Label":"Reviews","Value":52,"Goal":60,"Format":"count"},
    {"Label":"Conditions Cleared","Value":118,"Goal":120,"Format":"count"},
    {"Label":"Approvals","Value":33,"Goal":40,"Format":"count"}
  ];
</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.