Data Components
React components for financial data visualization.
Bar Component
Navigation and action bar component with search, date picker, and download functionality.
TypeScript
1 import { BarComponent } from "@openledger/accounting-react"; 2 3 function 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 }
Props
Prop | Type | Description |
---|---|---|
values | Array<{ value: string; label: string; icon?: string }> | Array of toggle options with value, label, and optional icon |
toggleType | string | Selected toggle value |
setToggleType | (value: string) => void | Toggle change handler |
showToggleGroup | boolean | Show toggle group |
showButtons | boolean | Show action buttons |
showSearchBar | boolean | Show search input |
showDatePicker | boolean | Show date picker |
onSearch | (searchTerm: string) => void | Search handler |
Dashboard Box
Display financial metrics and KPIs.
TypeScript
1 import { DashboardBox } from "@openledger/accounting-react"; 2 3 function 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 }
Props
Prop | Type | Description |
---|---|---|
title | string | Box title |
amount | number | Metric value |
change | number | Change percentage |
changeDirection | "up" | "down" | "attachMoney" | Direction indicator |
comparedTo | string | Comparison period |
Line Chart
Visualize financial data trends.
TypeScript
1 import { LineChart } from "@openledger/accounting-react"; 2 3 function 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 }
Props
Prop | Type | Description |
---|---|---|
data | Array<Record<string, any>> | Chart data |
index | string | X-axis field |
categories | string[] | Data series to display |
colors | string[] | Custom colors (optional) |
valueFormatter | (value: number) => string | Value format function (optional) |
showXAxis | boolean | Show X axis |
showYAxis | boolean | Show Y axis |
showGridLines | boolean | Show grid lines |
Transaction Table
Display tabular financial data.
TypeScript
1 import { DataTable } from "@openledger/accounting-react"; 2 3 function TransactionsTable() { 4 return ( 5 <DataTable 6 title="Recent Transactions" 7 data={transactions} 8 columns={["date", "description", "amount"]} 9 /> 10 ); 11 }
Props
Prop | Type | Description |
---|---|---|
title | string | Table title |
data | any[] | Table data |
columns | string[] | Column definitions |