series.type String (default: "column")

The type of the series.

The supported values are:

Example - set the chart series type

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "line",
    data: [1, 2, 3]
  }]
});
</script>
In this article