New to Kendo UI for jQueryStart a free 30-day trial

Series.target

configuration

The configuration options of the target

The target option is supported when series.type is set to "bullet" or "verticalBullet".

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      type: "bullet",
      target: {
        color: "green",
        border: {
          width: 3,
          color: "red"
        },
        line: {
          width: 10
        }
      },
      data: [
        { current: 1, target: 2 }
      ]
    }
  ]
});
</script>
Object|Function

The border of the target.

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      type: "bullet",
      target: {
        border: {
          width: 3,
          color: "red"
        }
      },
      data: [
        [1, 2]
      ]
    }
  ]
});
</script>

series.target.color

String|Function

The target color.

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      type: "bullet",
      target: {
        color: "green"
      },
      data: [
        [1, 2]
      ]
    }
  ]
});
</script>

The target line options.

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      type: "bullet",
      target: {
        line: {
          width: 10
        }
      },
      data: [
        [1, 2]
      ]
    }
  ]
});
</script>