0

How do I put a percentage beside my X axis labels in chart js bar chart. My dataset is an Object with key value of Title and its count.

scales: {
  x: {
    ticks: {
      min: 0,
      max: 100,
      callback: function(value) {
        return value + "%"
      }
    },
    scaleLabel: {
      display: true,
      labelString: "Percentage"
    }
  }
}

I tried this from a different question but it only makes all x labels 100%

uminder
  • 23,831
  • 5
  • 37
  • 72
user3352042
  • 131
  • 1
  • 3
  • 16

0 Answers0