mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			739 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			739 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| google.setOnLoadCallback(drawChart);
 | |
| 
 | |
| 
 | |
| function drawChart() {
 | |
|     googleLineChart('chart/home/account', 'accounts-chart');
 | |
|     googleBarChart('chart/home/budgets', 'budgets-chart');
 | |
|     googleColumnChart('chart/home/categories', 'categories-chart');
 | |
|     googlePieChart('chart/home/bills', 'bills-chart');
 | |
|     getBoxAmounts();
 | |
| }
 | |
| 
 | |
| function getBoxAmounts() {
 | |
|     var boxes = ['in', 'out', 'bills-unpaid', 'bills-paid'];
 | |
|     for (x in boxes) {
 | |
|         var box = boxes[x];
 | |
|         $.getJSON('/json/box/' + box).success(function (data) {
 | |
|             if (data.amount_raw != 0) {
 | |
|                 $('#box-' + data.box).html(data.amount);
 | |
|             }
 | |
|         }).fail(function () {
 | |
|             console.log('Failed to get box!')
 | |
|         });
 | |
|     }
 | |
| }
 |