This commit is contained in:
James Cole
2018-08-12 10:06:20 +02:00
parent b95ca98be9
commit dd95776144
8 changed files with 24 additions and 18 deletions

View File

@@ -22,6 +22,7 @@
$(function () {
"use strict";
configAccounting(billCurrencySymbol);
columnChart(billUri, 'bill-overview');
}
);

View File

@@ -85,7 +85,7 @@ var defaultChartOptions = {
display: false
},
ticks: {
// Include a dollar sign in the ticks
// break ticks when too long.
callback: function (value, index, values) {
return formatLabel(value, 20);
}

View File

@@ -202,7 +202,6 @@ function columnChart(URI, container) {
var chartType = 'bar';
drawAChart(URI, container, chartType, options, colorData);
}
/**