gaugeArea.heightNumber
The height of the gauge area. By default, the vertical gauge is 200px and the horizontal one is 60px.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
pointer: {
value: 30
},
gaugeArea: {
height: 150
},
scale: {
min: 0,
max: 50,
vertical: true
}
});
</script>