gaugeAreaObject
The gauge area configuration options. This is the entire visible area of the gauge.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
gaugeArea: {
background: "#eeeeee",
width: 300,
height: 300,
margin: 10
},
pointer: [{
value: 65
}]
});
</script>