diff --git a/statistics/gemeinde_detail.php b/statistics/gemeinde_detail.php index 8667a31..034933e 100644 --- a/statistics/gemeinde_detail.php +++ b/statistics/gemeinde_detail.php @@ -125,6 +125,9 @@ ?> +
+
+
@@ -161,6 +164,7 @@ + \ No newline at end of file diff --git a/statistics/include.php b/statistics/include.php index 755c49e..aacd5b8 100644 --- a/statistics/include.php +++ b/statistics/include.php @@ -62,3 +62,13 @@ function get_series($arrData,$arrBezeichnung,$strIndex1,$strIndex2="anz"){ return $result; } +function get_series_beteiligte($arrData,$arrBezeichnung){ + $result="["; + foreach ($arrData as $key => $numCount) { + if ($key!="rad") { // Fahrräder sind immer beteiligt. + $result .= "{name: '".$arrBezeichnung[$key]."', y: ".$numCount."},"; } + } + $result.="]"; + return $result; +} +