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

Specifies the line style of the series.

The possible values are:

  • "normal"—Connects the values with a straight line.
  • "step"—Connects the values with a right-angled line. Available when series.type is set to "line".
  • "smooth"—Connects the values with a smooth line. Not supported for stacked area series with missing values.

Possible values:

  • "normal"
  • "step"
  • "smooth"
Example:
jsx
<template>
 <Chart>
   <ChartSeries>
     <ChartSeriesItem :type="'line'" :data-items="dataItems" :item-style="'smooth'" />
   </ChartSeries>
 </Chart>
 </template>
<script>
import {
 Chart,
 ChartSeries,
 ChartSeriesItem
} from '@progress/kendo-vue-charts';

export default {
  components: {
     Chart,
     ChartSeries,
     ChartSeriesItem
  },
  data () {
      return {
         dataItems: [1, 2, 3]
      };
  }
}
</script>
Not finding the help you need?
Contact Support