'; let req = new XMLHttpRequest(); req.onreadystatechange = function () { if (req.readyState === 4 && req.status === 200) { let result = JSON.parse(req.response); document.getElementById("landprices").innerHTML = result.data; buildCharts(result.charts.areaChartData, result.charts.qmPriceChartData); loading = false; } else if (req.readyState === 4) { loading = false; } }; const url = "/stadt/zell-mosel/aggregation?year=" + val[1] + "&month=" + val[0]; req.open('GET', url, true); setTimeout(function () { req.send(); }, 1200); } }) } const areaChartData = { labels: [], data: [] }; const qmPriceChartData = { labels: [], data: [] }; areaChartData.labels = [ "0 m² - 100 m²" , "100 m² - 500 m²" , "500 m² - 1000 m²" , "1000 m² - 2000 m²" , "2000 m²+" ]; areaChartData.data = [ 0 , 0 , 1 , 4 , 2 ]; qmPriceChartData.labels = [ "0 € / m² - 100 € / m²" , "100 € / m² - 200 € / m²" , "200 € / m² - 300 € / m²" , "300 € / m² - 400 € / m²" , "400 € / m²+" ]; qmPriceChartData.data = [ 7 , 0 , 0 , 0 , 0 ]; buildCharts(areaChartData, qmPriceChartData); new Chart(document.getElementById("trend-chart"), { type: 'line', data: { labels: [ 'Apr. 2021', 'Aug. 2021', 'Dez. 2021', 'Jan. 2022', 'Feb. 2022', 'Mai 2022', 'Juni 2022', 'Juli 2022', 'Juni 2023', 'Juli 2023', 'Aug. 2023', 'Sept. 2023', 'Okt. 2023', 'Nov. 2023', 'Dez. 2023', 'Mai 2024', 'Juni 2024', 'Juli 2024', 'Aug. 2024', 'Okt. 2024', 'Nov. 2024', 'Jan. 2025', 'Feb. 2025', 'März 2025' ], datasets: [ { label: " €/m² im Durchschnitt", borderColor: "#0b4b82", backgroundColor: "#0b4b82", tension: 0.3, data: [ 78.39870161567096 , 129.12613678130725 , 101.42357080123223 , 101.42357080123223 , 84.76520572900256 , 127.65967903694022 , 117.31129293613027 , 117.31129293613027 , 25.63633867898798 , 39.745018366793865 , 39.745018366793865 , 34.249353217086245 , 39.745018366793865 , 29.718480737307118 , 34.44100999195986 , 28.92985102115828 , 29.475056601378526 , 29.475056601378526 , 29.475056601378526 , 19.223182291993602 , 19.223182291993602 , 24.146688164141892 , 25.1938815427293 , 8.941166380882311 ], yAxisID: 'y', }, { label: " €/m² Median", borderColor: "#76b4e8", backgroundColor: "#76b4e8", tension: 0.3, type: 'line', data: [ 44.03669724770642, 45.835662381218555, 52.85225718194255, 52.85225718194255, 46.79144385026738, 88.57142857142857, 74.8502994011976, 74.8502994011976, 30, 47.55434782608695, 47.55434782608695, 47.55434782608695, 47.55434782608695, 30, 47.55434782608695, 30, 45, 45, 45, 8.168529664660362, 8.168529664660362, 22.965879265091864, 33.57142857142857, 8.161582852431987 ], } ] }, options: { legend: {display: true}, title: { display: true, text: 'Entwicklung der Quadratmeterpreise in Zell (Mosel)', fontSize: 16, fontStyle: "normal", fontFamily: "'Open Sans',sans-serif" } } }); });