in source/web_site/js/dash.js [221:260]
var generateHorizontalBarChartConfig = function(label) {
var config = {
type: "horizontalBar",
data: {
labels: [],
datasets: [
{
label: label,
data: []
}
]
},
options: {
legend: {
display: true,
position: 'bottom'
},
responsive: true,
scales: {
yAxes: [{
stacked: true
}],
xAxes: [{
display: true,
scaleLabel: {
display: false
},
ticks: {
stepSize: 10,
suggestedMin: 0,
suggestedMax: 10
}
}]
}
}
};
return config;
}