height Number
Sets the height of the PropertyGrid. Numeric values are treated as pixels.
Example - set the height of the PropertyGrid
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
model: {
foo: "bar",
baz: 5
},
height: 500
});
</script>