Skip to main content

Metabase Reports

This section describes the BfmMetabaseReportsComponent component.

Usage

You can import the BfmMetabaseReportsComponent directly in your route configuration.

import { BfmMetabaseReportsComponent } from '@celerofinancas/ui-reports';

const routes = [
{
path: 'metabase-reports',
component: BfmMetabaseReportsComponent,
},
];

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

metabase-reports.component.ts
import { BfmMetabaseReportsComponent } from '@celerofinancas/ui-reports';

@Component({
standalone: true,
selector: 'metabase-reports',
imports: [BfmMetabaseReportsComponent],
templateUrl: './metabase-reports.component.html',
})
export class MetabaseReportsComponent {}

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

metabase-reports.component.html
<bfm-metabase-reports 
[headerBackTitle]="'Empresas'"
[headerTitle]="'Relatórios do Grupo Econômico'"
/>

Inputs

The BfmMetabaseReportsComponent component has the following inputs:

headerBackTitle

Header Component Back Title

TypeDefault
string'Empresas'

headerTitle

Header Title Component

TypeDefault
string'Relatórios do Grupo Econômico'

Events

The BfmMetabaseReportsComponent component has no events.