pointer.trackObject
The element arround/under the pointer. (available only for 'barIndicator' shape)
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
pointer: {
value: 25,
shape: "barIndicator",
track: {
color: "#e0e0e0",
size: 5
}
},
scale: {
min: 0,
max: 50
}
});
</script>
In this article