Reputation: 129
How to embedd text of the value on the column bar of the highchart
please see below image for the reference
image http://img16.imageshack.us/img16/1935/nbe1.png
Upvotes: 0
Views: 57
Reputation: 14442
These are added via the dataLabels
method. Code would look something like:
plotOptions: {
series: {
dataLabels: {
enabled: true,
inside: false,
rotation: 270,
color: 'white',
x: 3,
y: 15
}
}
},
Upvotes: 1