Thailand House Price Index: แผนภูมิติดตามราคาบ้านในประเทศไทยตั้งแต่ปี 2551 ถึงปีปัจจุบัน

เสนอบริการที่เป็นประโยชน์แก่ลูกค้าของคุณที่ต้องการหาที่พักในประเทศไทย ใช้บริการฟรีของเราและปรับปรุงเว็บไซต์อสังหาริมทรัพย์โดยแสดงฟรี 4 แผนภูมิแบบโต้ตอบติดตาม:

ดัชนีราคาบ้านในประเทศไทย
ดัชนีราคาใน Thailand Town House
ดัชนีราคาคอนโดในประเทศไทย
ดัชนีราคาที่ดินในประเทศไทย

การสร้างแผนภูมิบนเว็บไซต์ของคุณเป็นเรื่องง่ายมาก อ่านด้านล่างเพื่อดูว่า

The code

ต่อไปนี้เป็นรหัสง่ายๆในการแสดงกราฟดัชนีราคาบ้านในเว็บไซต์ของคุณ เพียงคัดลอกโค้ดด้านบนและวางโค้ดลงในหน้าเว็บในเว็บไซต์ของคุณที่คุณต้องการให้แผนภูมิแสดง ฟังก์ชันที่เรียกว่าภายใน $ (document) .ready (function () { เชื่อมต่อกับเซิร์ฟเวอร์ snaphome.asia รวบรวมข้อมูลตลาดและดึงกราฟดัชนีราคาบ้านไทยบนหน้าเว็บของคุณ

<!DOCTYPE html>
<html>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://www.snaphome.asia/_js/chart/Chart.bundle.js"></script>
<script src="https://www.snaphome.asia/_js/chart/utils.js"></script>
<script src="https://www.snaphome.asia/_js/chart/thailandHousePriceIndex.js"></script>

<script>
$(document).ready(function(){
house('https://www.snaphome.asia/single_detached_house_price_index_thailand_last_10_years');

});
</script>
<body>

<div class="chart-container"></div> <!-- the chart-container div will display the chart with the Thailand House Price Index -->

</body>
</html>


The output

ด้านล่างนี้เป็นผลลัพธ์ที่คุณจะได้รับจากหน้าเว็บ



Additional charts

ในทำนองเดียวกันคุณสามารถแสดงในแผนภูมิเว็บไซต์ของคุณแทน: ดัชนีราคาใน Thailand Town House ดัชนีราคาคอนโดในประเทศไทย ดัชนีราคาที่ดินในประเทศไทย

เมื่อต้องการแสดงในเว็บไซต์ของคุณแผนภูมิเพิ่มเติมก็เพิ่มฟังก์ชัน 3 ด้านล่างภายใน $ (document) .ready (function () {

<script>
$(document).ready(function(){

townHouse('https://www.snaphome.asia/town_house_price_index_thailand_last_10_years'); condo('https://www.snaphome.asia/condo_price_index_thailand_last_10_years'); land('https://www.snaphome.asia/land_price_index_thailand_last_10_years');

});
</script>
<body>

<div class="container_town_house_10y"></div> <!-- the container_town_house_10y div displays the chart with the Thailand Town House Price Index -->

<div class="container_condo_10y"></div> <!-- the container_condo_10y div displays the chart with the Thailand Condo Price Index -->

<div class="container_land_10y"></div> <!-- the container_land_10y div displays the chart with the Thailand Land Price Index -->

</body>
</html>


The output

ด้านล่างนี้เป็นผลลัพธ์ที่คุณจะได้รับจากหน้าเว็บ



If you have troubles setting up the charts on your website, feel free to get in contact with us using our ติดต่อเรา form.