Added option to allow absolute dimensions on graphs

This commit is contained in:
Daniel Preussker
2015-09-06 10:59:44 +01:00
parent 63ed6e25aa
commit f081706ab1
2 changed files with 6 additions and 2 deletions

View File

@ -103,3 +103,7 @@ else {
}
$rrd_options .= ' --font-render-mode normal';
if (isset($_GET['absolute']) && $_GET['absolute'] == "1") {
$rrd_options .= ' --full-size-mode';
}