mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 08:02:41 +02:00
Make graph page use session variable to compute graph size
This commit is contained in:
@@ -111,6 +111,14 @@ else {
|
||||
$graph_array['height'] = "300";
|
||||
$graph_array['width'] = $graph_width;
|
||||
|
||||
if($_SESSION['screen_width']) {
|
||||
$graph_array['width'] = ($_SESSION['screen_width'] - ($_SESSION['screen_width']/12));
|
||||
}
|
||||
|
||||
if($_SESSION['screen_height']) {
|
||||
$graph_array['height'] = ($_SESSION['screen_height'] - ($_SESSION['screen_height']/2));
|
||||
}
|
||||
|
||||
echo("<hr />");
|
||||
|
||||
include_once 'includes/print-date-selector.inc.php';
|
||||
|
||||
Reference in New Issue
Block a user