Make some charts currency aware for #740

This commit is contained in:
James Cole
2018-08-27 18:59:30 +02:00
parent 4fc13037d2
commit 0d82589916
21 changed files with 531 additions and 137 deletions

View File

@@ -204,6 +204,8 @@ function columnChart(URI, container) {
drawAChart(URI, container, chartType, options, colorData);
}
/**
*
* @param URI
@@ -255,6 +257,22 @@ function pieChart(URI, container) {
}
/**
*
* @param URI
* @param container
*/
function neutralPieChart(URI, container) {
"use strict";
var colorData = false;
var options = $.extend(true, {}, neutralDefaultPieOptions);
var chartType = 'pie';
drawAChart(URI, container, chartType, options, colorData);
}
/**
* @param URI