series.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
styleoption is supported when series.type is set to "line", "scatterLine", "radarLine" or "polarLine".
The
stepvalue is only supported when series.type is set to "line".
The
smoothoptions 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