Dashboard Line Graph
This section describes the BfmDashboardLineGraphComponent component.
Usage
If you need more customization, you need to import it in your module and use it in your template.
line-graph.component.ts
import { BfmDashboardLineGraphComponent } from "@celerofinancas/ui-reports";
@Component({
standalone: true,
selector: 'line-graph',
imports: [BfmDashboardLineGraphComponent],
templateUrl: './line-graph.component.html',
})
export class LineGraphComponent {}
Then, in your template, you can use the component like this:
line-graph.component.html
<bfm-dashboard-line-graph
[data]="graphData"
/>
Inputs
The BfmDashboardLineGraphComponent component has the following inputs:
data
Graph data
| Type | Default |
|---|---|
| LineGraphDataItem[] | [] |
Events
The BfmDashboardLineGraphComponent component has no events.