{
var scores_sorted = lots_of_scores.slice(0).sort((a, b) => d3.descending(a.value/a.total, b.value/b.total)),
chart = roundBarGauge(scores_sorted);
chart.setProperties('container', { draw: false });
chart.setProperties('bar', {
height: 35,
spacing: 2,
rounding: 8,
percent: true
});
var color = d3.schemeBlues[9];
chart.setProperties('color', {
container: color[0],
title: color[2],
bar_value: color[8],
bar_total: "rgba(0,0,0,0)",
bar_value_text: color[1]
});
chart.setProperties('label', {
total: false
});
return chart.draw();
}