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

Series.target.line

configuration

The target line options.

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

The width of the line.

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