score:5

Use this in plot options,

plotOptions: { column: { stacking:'percent', pointPadding: 0.2, borderWidth: 0 } },

score:5

what I did is:

yAxis: {min: 0, max:100,tickInterval: 25,
              title: {
                  text: "title"
              },
              labels: {
                  format: '{value}%',
              }
          }

score:9

You can use formatter http://api.highcharts.com/highcharts#yAxis.labels.formatter and add symbol to your label.

score:22

Here is what I did:

yAxis: {
  labels: {
    formatter: function() {
       return this.value+"%";
    }
  },
}

score:26

You could do this:

yAxis: {
  labels: {
    format: '{value}%'
  }
}

Related Query

More Query from same tag