Kendo UI for jQuery RadialGauge Overview
The Kendo UI RadialGauge widget enables users to quickly understand in what certain range a value lies.
All graphics render on the client by using the Scalable Vector Graphics (SVG) format.
The RadialGauge is part of Kendo UI for jQuery, a
professional grade UI library with 110+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Initializingthe RadialGauge
To create the RadialGauge, use a div
element and optionally set a height and width by using CSS.
<div id="radial-gauge"></div>
The following example demonstrates how to initialize the RadialGauge with its default configuration.
$(document).ready(function() {
$("#radial-gauge").kendoRadialGauge();
});