gaugeArea.widthNumber
The width of the gauge area. By default the vertical gauge is 60px and horizontal gauge is 200px.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
gaugeArea: {
width: 350
},
pointer: [{
value: 42
}]
});
</script>