Skip to main content

Gross Payments Chart

Overview

Component to render chart displaying last 30 days of gross payment data.

Usage

Chart monthly volume

<justifi-gross-payment-chart
account-id="acc_123"
auth-token="wct_reporting"
interval="month"
range="12m"
/>

Props, Events & Methods

NameTypeRequiredDefaultDescription
account-idstringYes
auth-tokenstringYes

Events

  • error-event: Surfaces API or token errors for logging.

Theming & Layout

PartDescriptionDOM target
::part(loadingSpinner)

Usage Example



<!DOCTYPE html>
<html dir="ltr" lang="en">

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>justifi-gross-payment-chart</title>

<script
type="module"
src="https://cdn.jsdelivr.net/npm/@justifi/webcomponents@6.7.3/dist/webcomponents/webcomponents.esm.js"
></script>

<script
nomodule
src="https://cdn.jsdelivr.net/npm/@justifi/webcomponents@6.7.3/dist/webcomponents/webcomponents.js"
></script>

<style>
    ::part(font-family) {
      font-family: georgia;
    }
      
    ::part(color) {
      color: darkslategray;
    }

    ::part(background-color) {
      background-color: transparent;
    }
  </style>

</head>

<body>
<justifi-gross-payment-chart account-id="acc_123" auth-token="authToken" />
</body>

<script>
(function () {
  const grossPaymentChart = document.querySelector('justifi-gross-payment-chart');

  grossPaymentChart.addEventListener('error-event', (event) => {
    // here is where you would handle the error
    console.error('error-event', event.detail);
  });
})();
</script>

</html>