AFN AFN Widgets
Gallery
Pipeline Available v1.0.0

Active Locks By Bucket

Locked volume by aging

Live preview

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

Data contract

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

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

<!-- 3. Feed your data -->
<script>
  const el = document.querySelector('#w');
  el.data = [
    {"Category":"0-15d","Series":"Purchase","Value":180000000},
    {"Category":"0-15d","Series":"Refi","Value":60000000},
    {"Category":"16-30d","Series":"Purchase","Value":140000000},
    {"Category":"16-30d","Series":"Refi","Value":48000000},
    {"Category":"31-45d","Series":"Purchase","Value":70000000},
    {"Category":"31-45d","Series":"Refi","Value":22000000},
    {"Category":"46d+","Series":"Purchase","Value":30000000},
    {"Category":"46d+","Series":"Refi","Value":9000000}
  ];
</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.