2016-10-25 11:53:54 -05:00
|
|
|
/* globals google, startDate ,reportURL, endDate , reportType ,accountIds , picker:true, minDate, year, month, columnChart, lineChart, stackedColumnChart */
|
2015-12-03 23:56:59 -06:00
|
|
|
|
2015-06-27 09:00:50 -05:00
|
|
|
|
|
|
|
$(function () {
|
|
|
|
"use strict";
|
2015-08-01 00:22:48 -05:00
|
|
|
drawChart();
|
2015-06-27 09:00:50 -05:00
|
|
|
});
|
2015-03-04 13:47:00 -06:00
|
|
|
|
|
|
|
|
2015-05-08 10:13:49 -05:00
|
|
|
function drawChart() {
|
2015-05-24 13:41:14 -05:00
|
|
|
"use strict";
|
2015-12-12 12:04:30 -06:00
|
|
|
|
2015-12-14 13:37:38 -06:00
|
|
|
// month view:
|
|
|
|
// draw account chart
|
2016-03-16 11:28:04 -05:00
|
|
|
lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart');
|
2015-12-03 07:52:10 -06:00
|
|
|
}
|