icingaweb2/modules/monitoring/application/views/scripts/chart/hostgroup.phtml
Matthias Jentsch e799d65d3f Only apply SVG responsiveness when not rendered in compact mode
Don't let SVGs grow vertically in when displayed in the dashboard, to avoid wasted space
2014-08-28 16:52:02 +02:00

9 lines
235 B
PHTML

<?php if (! $this->compact) { ?>
<div class="svg-container-responsive">
<?= $chart->render(); ?>
<?= isset($chart2) ? $chart2->render() : ''; ?>
</div>
<?php } else { ?>
<?= $chart->render(); ?>
<?php } ?>