Personal Project Budget Tracker
Manage your project finances, track expenses, and stay on budget.
Budget Overview
Budget Usage
0%
Manage Transactions
Project Budget Summary
Budget At-a-Glance
Expenses by Category
Total Budget: $${data.budget.toFixed(2)}
Total Spent: $${totalSpent.toFixed(2)}
Remaining: $${remaining.toFixed(2)}
`; const categoryTotals = data.categories.map(cat => { const total = data.expenses.filter(ex => ex.category === cat).reduce((sum, ex) => sum + ex.amount, 0); return { category: cat, total }; }); getElement('summary-by-category').innerHTML = `| ${cat.category} | $${cat.total.toFixed(2)} |
