Operations
Available
v1.0.0
Appraisal Department
Appraisal pipeline & turn times
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-appraisaldepartment>) -->
<script type="module" src="https://widgets-d.afnai.com/cdn/afn-appraisaldepartment/v1/afn-appraisaldepartment.js"></script>
<!-- 2. Drop the tag -->
<afn-appraisaldepartment id="w"></afn-appraisaldepartment>
<!-- 3. Feed your data -->
<script>
const el = document.querySelector('#w');
el.data = [
{"Label":"Ordered","Value":156,"Format":"count"},
{"Label":"In Progress","Value":63,"Format":"count"},
{"Label":"Completed","Value":93,"Sub":"this month","Format":"count"},
{"Label":"Avg Days","Value":5.4,"Sub":"turn time","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.