series.style String (default: "normal")

The supported values are:

  • "normal" - The values will be connected with straight line.
  • "step" - The values will be connected with a line with right angle.
  • "smooth" - The values will be connected with a smooth line.

The default value is "normal".

The style option is supported when series.type is set to "line", "scatterLine", "radarLine" or "polarLine".

The step value is only supported when series.type is set to "line".

The smooth options is not supported for stacked area series with missing values.

Example - set the style behavior

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