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").kendoLinearGauge({
pointer: {
value: 30
},
gaugeArea: {
width: 100
},
scale: {
min: 0,
max: 50,
vertical: true
}
});
</script>
In this article