The Radial Gauge widget is used to let users quickly understand where a value lies in a certain range. All graphics are rendered on the client using SVG with a fallback to VML for legacy browsers.
<div id="radial-gauge"></div>
$(document).ready(function() {
$("#radial-gauge").kendoRadialGauge();
});
</p>
The startAngle
and endAngle
configuration options enable you to create
gauges that align with your design goals.
$("#radial-gauge").kendoRadialGauge({
startAngle: 90,
endAngle: 180
});
For a real-world example for this functionality, see the car dashboard demo.