New to Kendo UI for Vue? Start a free 30-day trial
LineStyle
The line style of the series.
import {
Chart,
ChartSeries,
ChartSeriesItem
} from '@progress/kendo-vue-charts';
<template>
<Chart>
<ChartSeries>
<ChartSeriesItem :type="'line'" :data-items="dataItems" :item-style="'smooth'" />
</ChartSeries>
</Chart>
</template>
<script>
export default {
components: {
Chart,
ChartSeries,
ChartSeriesItem
},
data () {
return {
dataItems: [1, 2, 3]
};
}
}
</script>
type
LineStyle = "normal" | "step" | "smooth";