Area Stats


.dropbtn {
background-color: #000000;
color: white;
font-family: montserrat;
}

.dropbtn:hover, .dropbtn:focus {
}

.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.show {display: block;}

/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById(“myDropdown”).classList.toggle(“show”);
}

// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches(‘.dropbtn’)) {
var dropdowns = document.getElementsByClassName(“dropdown-content”);
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}

In addition to our Monthly Market Stats, we also produce area-specific stats pieces for the city of Toronto. These district stats provide a detailed capture of sales by property type AND style, along with other valuable local data.

Below, you’ll find the latest stats in PDF format, along with our archive. Please note that for files older than July 2020, not all districts may be available.

function toggleMe(a){
var e=document.getElementById(a);
var i = document.getElementById(a + ‘_image’);
if(!e)return true;
if(e.style.display==”none”){
e.style.display=”block”;
} else {
e.style.display=”none”;
}
return false;
}