AFN AFN Widgets
Gallery
Trend Available v1.0.0

Loan Activity Daily

Volume by milestone

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

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

<!-- 3. Feed your data -->
<script>
  const el = document.querySelector('#w');
  el.data = [
    {"Category":"Mon","Series":"Started","Value":52000000},
    {"Category":"Mon","Series":"Locked","Value":31000000},
    {"Category":"Mon","Series":"Funded","Value":22000000},
    {"Category":"Tue","Series":"Started","Value":58000000},
    {"Category":"Tue","Series":"Locked","Value":34000000},
    {"Category":"Tue","Series":"Funded","Value":25000000},
    {"Category":"Wed","Series":"Started","Value":61000000},
    {"Category":"Wed","Series":"Locked","Value":36000000},
    {"Category":"Wed","Series":"Funded","Value":27000000},
    {"Category":"Thu","Series":"Started","Value":55000000},
    {"Category":"Thu","Series":"Locked","Value":33000000},
    {"Category":"Thu","Series":"Funded","Value":24000000},
    {"Category":"Fri","Series":"Started","Value":49000000},
    {"Category":"Fri","Series":"Locked","Value":29000000},
    {"Category":"Fri","Series":"Funded","Value":21000000}
  ];
</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.