Budget Tracker
render_budgetVisualize budget vs actual spending with an interactive dashboard. Enter categories, budgeted and actual amounts, and get pie chart, bar chart, and surplus/deficit indicator.
Instructions
Render a visual budget breakdown with pie chart of spending categories, bar chart of budget vs actual, and surplus/deficit indicator. Pass categories as a JSON array of objects with name, budgeted, and actual fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Dashboard title | |
| categories | Yes | JSON array: [{"name":"Rent","budgeted":1500,"actual":1500}, ...] | |
| total_budget | Yes | Total monthly budget amount |