in source/web_site/js/dash.js [197:219]
var generateLineChartConfig = function(label) {
var config = {
type: "line",
data: {labels: [] , datasets: [ { label: label, data: [] }] },
options: {
legend: {
position: 'bottom'
},
responsive: true,
scales: {
xAxes: [{
ticks: {
autoSkip: true,
maxTicksLimit: 6
},
display: true
}]
}}
};
return config;
}