TUI Chart
Theme
Apply Custom Data
Chart Data
{ "categories": ["June", "July", "Aug", "Sep", "Oct", "Nov"], "series": [ { "name": "Budget", "data": [5000, 3000, 5000, 7000, 6000, 4000] }, { "name": "Income", "data": [8000, 1000, 7000, 2000, 5000, 3000] }, { "name": "Expenses", "data": [4000, 4000, 6000, 3000, 4000, 5000] }, { "name": "Debt", "data": [6000, 3000, 3000, 1000, 2000, 4000] } ] }
Chart Options
{ "chart": { "width": 700, "height": 400, "title": "Monthly Revenue", "format": "1,000" }, "yAxis": { "title": "Month" }, "xAxis": { "title": "Amount", "min": 0, "max": 9000 } }
More Options
Chart Theme
{ "series": { "colors": ["#63A69F", "#F2E1AC", "#F2836B", "#F2594B"] } }
More Theme