seriesDefaults.styleString(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 seriesDefaults.type is set to "line", "scatterLine", "radarLine" or "polarLine".

The step value is only supported when seriesDefaults.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({
    seriesDefaults: {
      type: "line",
      style: "step",
    },
    series: [
      {
        data: [1, 2, 3, 4, 5],
      },
    ],
  });
</script>
In this article
seriesDefaults.style
Not finding the help you need?
Contact Support