Operations
Available
v1.0.0
Insuring Department - Pipeline
Insuring pipeline
Live preview
Rendered from sample data fed via .data — exactly how your app feeds it.
Data contract
| Column | Type | Req |
|---|---|---|
| Label | string | ✓ |
| Value | number | ✓ |
| Sub | string | — |
| 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-insuringdepartmentpipeline>) -->
<script type="module" src="https://widgets-d.afnai.com/cdn/afn-insuringdepartmentpipeline/v1/afn-insuringdepartmentpipeline.js"></script>
<!-- 2. Drop the tag -->
<afn-insuringdepartmentpipeline id="w"></afn-insuringdepartmentpipeline>
<!-- 3. Feed your data -->
<script>
const el = document.querySelector('#w');
el.data = [
{"Label":"In Pipeline","Value":312,"Format":"count"},
{"Label":"Received Today","Value":44,"Format":"count"},
{"Label":"Avg Age","Value":3.8,"Sub":"days","Format":"count"},
{"Label":"Aged > 7d","Value":19,"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.