legend
This commit is contained in:
parent
fbcafb1d23
commit
079c0b53ff
@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
<div class="container" style="margin-top:4em;">
|
<div class="container" style="margin-top:4em;">
|
||||||
<h1>Fahrradunfälle in <?=$strName?></h2>
|
<h1>Fahrradunfälle in <?=$strName?></h2>
|
||||||
<p>Einwohnerzahl: <?=$numPopulation?> Fläche: <?=$numFlaeche?> km<sup>2</sup></p>
|
<p>Einwohnerzahl: <?=number_format($numPopulation,0,",",".")?> Fläche: <?=number_format($numFlaeche,2,",",".")?> km<sup>2</sup></p>
|
||||||
|
|
||||||
<!-- Unfallverlauf -->
|
<!-- Unfallverlauf -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -168,9 +168,9 @@ Highcharts.chart('c_unfallverlauf', {
|
|||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
align: 'left',
|
align: 'left',
|
||||||
x: 400,
|
x: 420,
|
||||||
verticalAlign: 'bottom',
|
verticalAlign: 'bottom',
|
||||||
y: 30,
|
y: -45,
|
||||||
floating: true,
|
floating: true,
|
||||||
backgroundColor:
|
backgroundColor:
|
||||||
Highcharts.defaultOptions.legend.backgroundColor || 'white',
|
Highcharts.defaultOptions.legend.backgroundColor || 'white',
|
||||||
|
@ -61,7 +61,7 @@
|
|||||||
|
|
||||||
<div class="container" style="margin-top:4em;">
|
<div class="container" style="margin-top:4em;">
|
||||||
<h1>Fahrradunfälle in <?=$strName?></h2>
|
<h1>Fahrradunfälle in <?=$strName?></h2>
|
||||||
<p>Einwohnerzahl: <?=$numPopulation?> Fläche: <?=$numFlaeche?> km<sup>2</sup></p>
|
<p>Einwohnerzahl: <?=number_format($numPopulation,0,",",".")?> Fläche: <?=number_format($numFlaeche,2,",",".")?> km<sup>2</sup></p>
|
||||||
<p><a class='btn btn-primary' href="../index.php?d=<?=$strDistrict?>">Zur Unfallkarte</a></p>
|
<p><a class='btn btn-primary' href="../index.php?d=<?=$strDistrict?>">Zur Unfallkarte</a></p>
|
||||||
<!-- Unfallverlauf -->
|
<!-- Unfallverlauf -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
|
|
||||||
<div class="container" style="margin-top:4em;">
|
<div class="container" style="margin-top:4em;">
|
||||||
<h1>Fahrradunfälle in <?=$strName?></h2>
|
<h1>Fahrradunfälle in <?=$strName?></h2>
|
||||||
<p>Einwohnerzahl: <?=$numPopulation?> Fläche: <?=$numFlaeche?> km<sup>2</sup></p>
|
<p>Einwohnerzahl: <?=number_format($numPopulation,0,",",".")?> Fläche: <?=number_format($numFlaeche,2,",",".")?> km<sup>2</sup></p>
|
||||||
|
|
||||||
<!-- Unfallverlauf -->
|
<!-- Unfallverlauf -->
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -84,7 +84,7 @@
|
|||||||
</table>
|
</table>
|
||||||
<table class="table table-sm">
|
<table class="table table-sm">
|
||||||
<tr><th>Quote pro Tausend Einwohner</th><td><?= round($numGesamt/$numPopulation*1000,2) ?></td></tr>
|
<tr><th>Quote pro Tausend Einwohner</th><td><?= round($numGesamt/$numPopulation*1000,2) ?></td></tr>
|
||||||
<tr><th>Quote pro Fläche</th><td><?= round($numGesamt/$numFlaeche,1) ?> /km<sup>2</sup></td></tr>
|
<tr><th>Quote pro Fläche</th><td><?= number_format($numGesamt/$numFlaeche,2,",",".") ?> /km<sup>2</sup></td></tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-7">
|
<div class="col-7">
|
||||||
|
Loading…
Reference in New Issue
Block a user