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").kendoRadialGauge({
gaugeArea: {
height: 400
},
pointer: [{
value: 30
}]
});
</script>