[Chartjs]-Chartjs-plugin-error-bars display error-bars without displaying label on a horizontalBar chart

1👍

You can filter out tick labels by defining a yAxes.ticks.callback function as follows.

options: {
  ...
  scales: {
    yAxes: [{
      ticks: {
        callback: () => undefined
     }
   }]
},

For further details, please consult chapter Creating Custom Tick Formats from the Chart.js documentation.

Leave a comment