Looking for assistance with adding value labels to the top of each column bar in a Vue chart using chartkick and highcharts.
https://i.sstatic.net/c4Bwc.jpg
Check out the image above to see my current output.
<template>
<column-chart lable="value" :min="0" :refresh="60" height="400px"
xtitle="City" :data="series" :library="values"></column-chart>
<template>
Included below is the script I am utilizing in Vue.js
<script>
data(){
return{
values: {
borderWidth: 10,
dataLabels: {
enabled: true
}
}
}
},
</script>
The desired outcome is illustrated in the link below: