Pipeline
Available
v1.0.0
Active Pipeline By Bucket
Pipeline volume by stage
Live preview
Rendered from sample data fed via .data — exactly how your app feeds it.
Data contract
| Column | Type | Req |
|---|---|---|
| Category | string | ✓ |
| Value | number | ✓ |
| Series | 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-activepipelinebucket>) -->
<script type="module" src="https://widgets-d.afnai.com/cdn/afn-activepipelinebucket/v1/afn-activepipelinebucket.js"></script>
<!-- 2. Drop the tag -->
<afn-activepipelinebucket id="w"></afn-activepipelinebucket>
<!-- 3. Feed your data -->
<script>
const el = document.querySelector('#w');
el.data = [
{"Category":"Orig/Proc","Series":"New","Value":120000000},
{"Category":"Orig/Proc","Series":"Aged","Value":40000000},
{"Category":"Orig/Proc","Series":"Stale","Value":15000000},
{"Category":"Underwriting","Series":"New","Value":210000000},
{"Category":"Underwriting","Series":"Aged","Value":120000000},
{"Category":"Underwriting","Series":"Stale","Value":60000000},
{"Category":"Closing","Series":"New","Value":80000000},
{"Category":"Closing","Series":"Aged","Value":35000000},
{"Category":"Closing","Series":"Stale","Value":12000000}
];
</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.