mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00: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