Dashboard Summary
This section describes the BfmDashboardSummaryComponent component.
Usage
If you need more customization, you need to import it in your module and use it in your template.
dashboard-summary.component.ts
import { BfmDashboardSummaryComponent } from "@celerofinancas/ui-reports";
@Component({
standalone: true,
selector: 'dashboard-summary',
imports: [BfmDashboardSummaryComponent],
templateUrl: './dashboard-summary.component.html',
})
export class DashboardSummaryComponent {}
Then, in your template, you can use the component like this:
dashboard-summary.component.html
<bfm-dashboard-summary
[title]="'Seu financeiro'"
/>
Inputs
The BfmDashboardSummaryComponent component has the following inputs:
title
Title of the dashboard
| Type | Default |
|---|---|
| string | 'Seu financeiro' |
Events
The BfmDashboardSummaryComponent component has no events.