height String|Number

Determines the height of the component. Numeric values are treated as pixels.

Example - set the height of the component

<div id="skeleton"></div>
<script>
$("#skeleton").kendoSkeletonContainer({
    width: 200,
    height: 200,
    grid: {
        columns: 5,
        rows: 5,
        items: [
            {
                colStart: 1,
                colSpan: 1,
                rowStart: 1,
                rowSpan: 1,
                shape: "rectangle"
            },
            {
                colStart: 2,
                colSpan: 1,
                rowStart: 1,
                rowSpan: 1,
                shape: "rectangle"
            }
        ]
    }
});
</script>
In this article