Skip to main content

Dashboard Header

This section describes the BfmDashboardHeaderComponent component.

Usage

If you need more customization, you need to import it in your module and use it in your template.

dashboard-header.component.ts
import { BfmDashboardHeaderComponent } from "@celerofinancas/ui-reports";

@Component({
standalone: true,
selector: 'dashboard-header',
imports: [BfmDashboardHeaderComponent],
templateUrl: './dashboard-header.component.html',
})
export class DashboardHeaderComponent {}

Then, in your template, you can use the component like this:

dashboard-header.component.html
<bfm-dashboard-header 
[welcomeText]="'Welcome to the dashboard'"
/>

Inputs

The BfmDashboardHeaderComponent component has the following inputs:

welcomeText

User welcoming text

TypeDefault
string''

Events

The BfmDashboardHeaderComponent component has no events.