abhishek mehra
abhishek mehra

Reputation: 129

How to embed text on the bar of the highchart

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

Answers (1)

wergeld
wergeld

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

Related Questions