private double addBarChart(SVGPlot svgp, Element parent, double ypos, String label, double maxValue, double value) {
SVGScoreBar barchart = new SVGScoreBar();
barchart.setFill(value, maxValue);
barchart.showValues(FormatUtil.NF4);
barchart.addLabel(label);
parent.appendChild(barchart.build(svgp, 0.0, ypos, BARLENGTH, BARHEIGHT));
ypos += 1;
return ypos;
}