AFN AFN Widgets
Gallery
Production Available v1.0.0

Loan Officer Gross Profit

Gross profit by loan officer

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

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

<!-- 3. Feed your data -->
<script>
  const el = document.querySelector('#w');
  el.data = [
    {"Category":"Ascencio","Value":1240000},
    {"Category":"Winblad","Value":2100000},
    {"Category":"Stewart","Value":1420000},
    {"Category":"Larson","Value":1150000},
    {"Category":"Mente","Value":980000},
    {"Category":"Sherman","Value":760000}
  ];
</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.