Fixes past timeseries not working

This commit is contained in:
Matteo Biscosi 2023-12-20 17:50:42 +00:00
parent 35b09487b9
commit 98c8b49d97
3 changed files with 20 additions and 13 deletions

View file

@ -103,7 +103,7 @@ function buildChartOptions(options) {
}
changeFormatters(config, options);
return config;
}
@ -111,6 +111,12 @@ function buildChartOptions(options) {
function formatSerieProperties(type) {
switch (type) {
case 'dash':
return {
fillGraph: false,
customBars: false,
strokePattern: Dygraph.DASHED_LINE
};
case 'point':
return {
fillGraph: false,