New to Kendo UI for jQuery? Start a free 30-day trial
Multiple Pointers
Updated on Dec 10, 2025
The RadialGauge enables you to highlight multiple values by rendering multiple pointers.
You can independently customize each pointer including its current value, color, and length.
html
<div id="gauge"></div>
<script>
$("#gauge").kendoRadialGauge({
pointer: [{
value: 10,
color: '#ffd246',
length: 0.5
}, {
value: 20,
color: '#28b4c8',
length: 0.75
}, {
value: 30,
color: '#78d237',
// Default length
// length: 1
}]
});
</script>