New to Kendo UI for Vue? Start a free 30-day trial
MarkerType
Specifies the marker type.
jsx
<template>
<Chart>
<ChartSeries>
<ChartSeriesItem :type="'line'" :data-items="dataItems" :markers="markerType" />
</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],
markerType: { type: "cross" }
};
}
}
</script>
type
MarkerType = "square" | "circle" | "triangle" | "cross" | "rect" | "roundedRect";