mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 23:49:33 +00:00
Fixes past timeseries not working
This commit is contained in:
parent
35b09487b9
commit
98c8b49d97
3 changed files with 20 additions and 13 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue