pointer.track.visibleBoolean(default: false)
The visibility of the track.
Example
<div id="gauge"></div>
<script>
$("#gauge").kendoLinearGauge({
pointer: {
value: 25,
shape: "barIndicator",
track: {
color: "#f3e5f5",
visible: true
}
},
scale: {
min: 0,
max: 50
}
});
</script>
In this article