First reports.

This commit is contained in:
Sander Dorigo
2014-11-02 18:46:01 +01:00
parent 0f1437dd6a
commit ef39f31ea1
11 changed files with 370 additions and 286 deletions

View File

@@ -13,31 +13,31 @@ function drawChart() {
$(function () {
//googleLineChart();
/**
* get data from controller for home charts:
*/
$.getJSON('chart/home/account').success(function (data) {
//$('#accounts-chart').highcharts(options);
});
/**
* Get chart data for categories chart:
*/
$.getJSON('chart/home/categories').success(function (data) {
//$('#categories-chart');
});
/**
* Get chart data for budget charts.
*/
$.getJSON('chart/home/budgets').success(function (data) {
//$('#budgets-chart');
});
$.getJSON('chart/home/recurring').success(function (data) {
//$('#recurring-chart');
});
////googleLineChart();
///**
// * get data from controller for home charts:
// */
//$.getJSON('chart/home/account').success(function (data) {
// //$('#accounts-chart').highcharts(options);
//});
//
///**
// * Get chart data for categories chart:
// */
//$.getJSON('chart/home/categories').success(function (data) {
// //$('#categories-chart');
//});
//
///**
// * Get chart data for budget charts.
// */
//$.getJSON('chart/home/budgets').success(function (data) {
// //$('#budgets-chart');
//
//});
//
//$.getJSON('chart/home/recurring').success(function (data) {
// //$('#recurring-chart');
//});
});