Geographic
Available
v1.0.0
Active Properties in Pipeline (State)
Active properties by state
Live preview
Rendered from sample data fed via .data — exactly how your app feeds it.
Data contract
| Column | Type | Req |
|---|---|---|
| State | string | ✓ |
| Funded | number | ✓ |
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-activepropertiesstate>) -->
<script type="module" src="https://widgets-d.afnai.com/cdn/afn-activepropertiesstate/v1/afn-activepropertiesstate.js"></script>
<!-- 2. Drop the tag -->
<afn-activepropertiesstate id="w"></afn-activepropertiesstate>
<!-- 3. Feed your data -->
<script>
const el = document.querySelector('#w');
el.data = [
{"State":"California","Funded":1240},
{"State":"Texas","Funded":1080},
{"State":"Florida","Funded":920},
{"State":"Arizona","Funded":640},
{"State":"Colorado","Funded":510},
{"State":"Washington","Funded":430},
{"State":"Georgia","Funded":380},
{"State":"Ohio","Funded":290},
{"State":"North Carolina","Funded":250},
{"State":"Nevada","Funded":210}
];
</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.