Data Components

React components for financial data visualization.

Bar Component

Navigation and action bar component with search, date picker, and download functionality.

TypeScript
1import { BarComponent } from "@openledger/accounting-react";
2
3function Toolbar() {
4 return (
5 <BarComponent
6 values={[
7 { value: "daily", label: "Daily" },
8 { value: "monthly", label: "Monthly" },
9 ]}
10 showToggleGroup={true}
11 showButtons={true}
12 showSearchBar={true}
13 showDatePicker={true}
14 onSearch={(term) => console.log(term)}
15 />
16 );
17}
PropTypeDescription
valuesArray<{ value: string; label: string; icon?: string }>Array of toggle options with value, label, and optional icon
toggleTypestringSelected toggle value
setToggleType(value: string) => voidToggle change handler
showToggleGroupbooleanShow toggle group
showButtonsbooleanShow action buttons
showSearchBarbooleanShow search input
showDatePickerbooleanShow date picker
onSearch(searchTerm: string) => voidSearch handler

Dashboard Box

Display financial metrics and KPIs.

TypeScript
1import { DashboardBox } from "@openledger/accounting-react";
2
3function MetricDisplay() {
4 return (
5 <DashboardBox
6 title="Revenue"
7 amount={50000}
8 change={12.5}
9 changeDirection="up"
10 comparedTo="Last Month"
11 />
12 );
13}
PropTypeDescription
titlestringBox title
amountnumberMetric value
changenumberChange percentage
changeDirection"up" | "down" | "attachMoney"Direction indicator
comparedTostringComparison period

Line Chart

Visualize financial data trends.

TypeScript
1import { LineChart } from "@openledger/accounting-react";
2
3function RevenueChart() {
4 return (
5 <LineChart
6 data={revenueData}
7 index="date"
8 categories={["revenue", "expenses"]}
9 showXAxis={true}
10 showYAxis={true}
11 showGridLines={true}
12 valueFormatter={(value) => `$${value}`}
13 />
14 );
15}
PropTypeDescription
dataArray<Record<string, any>>Chart data
indexstringX-axis field
categoriesstring[]Data series to display
colorsstring[]Custom colors (optional)
valueFormatter(value: number) => stringValue format function (optional)
showXAxisbooleanShow X axis
showYAxisbooleanShow Y axis
showGridLinesbooleanShow grid lines

Transaction Table

Display tabular financial data.

TypeScript
1import { DataTable } from "@openledger/accounting-react";
2
3function TransactionsTable() {
4 return (
5 <DataTable
6 title="Recent Transactions"
7 data={transactions}
8 columns={["date", "description", "amount"]}
9 />
10 );
11}
PropTypeDescription
titlestringTable title
dataany[]Table data
columnsstring[]Column definitions