pointer Array

The pointer configuration options. It accepts an Array of pointers, each with it's own configuration options.

Example - specify single pointer

<div id="gauge"></div>
<script>
  $("#gauge").kendoLinearGauge({
    pointer: {
      value: 40
    }
  });
</script>

Example - specify multiple pointers

<div id="gauge"></div>
<script>
  $("#gauge").kendoLinearGauge({
    pointer: [{
      value: 20
    }, {
      value: 40
    }]
  });
</script>
In this article