New to Kendo UI for Vue? Start a free 30-day trial

NotePosition

Specifies the position of a note.

import {
 Chart,
 ChartValueAxis,
 ChartValueAxisItem
} from '@progress/kendo-жуе-charts';

<template>
 <Chart>
   <ChartValueAxis>
     <ChartValueAxisItem :notes="note" />
   </ChartValueAxis>
 </Chart>
 </template>
<script>
export default {
  components: {
     Chart,
     ChartValueAxis,
     ChartValueAxisItem
  },
  computed: {
     notes(){
         return { dataItems: this.dataItems, position: this.position }
     }  
  },
  data () {
      return {          
            dataItems: [{value: 1}],
            position: "right"
      };
  }
}
</script>

type NotePosition = "top" | "bottom" | "left" | "right";

In this article

Not finding the help you need?