Hiding labels on y axis in Chart.js

Javascriptchart.js

Javascript Problem Overview


I need to hide labels in line chart drawn using library chart.js. I googled but no luck. Could that be hidden?

Thanks

Javascript Solutions


Solution 1 - Javascript

To hide just the labels, in version 2.3.0 of Charts.js, you disable ticks like so:

options: {
    scales: {
        yAxes: [{
            ticks: {
            	display: false
            }
        }]
    }
}

Solution 2 - Javascript

For version 2, you can do this with the Scales option in the global configuration.

  var ctx = document.getElementById("log");
  var chart = new Chart(ctx, {
      type: 'line',
      options: {
        scales: {
          xAxes: [{
            display: false
          }],
          yAxes: [{
            display: false
          }],
        }
      },
      data: {
        labels: ['Item 1', 'Item 2', 'Item 3'],
        datasets: [{
            fill: false,
            borderWidth: 1,
            data: [10, 20, 30]
        }]
      }
    });

Solution 3 - Javascript

This will hide labels in Y-Axis: (but not X-Axis)

    scaleShowLabels: false,

Solution 4 - Javascript

options: {
    scales: {
        yAxes: [{
            gridLines: {
              display: true,
              color: 'rgba(219,219,219,0.3)',
              zeroLineColor: 'rgba(219,219,219,0.3)',
              drawBorder: false, // <---
              lineWidth: 27,
              zeroLineWidth: 1                 
            },
            ticks: {
                beginAtZero: true,
                display: true
            }
        }]
    }
}

Solution 5 - Javascript

For version 3.x

options: {
  scales: {
    y: {
      ticks: {
        display: false,
      }
    }
  }
}

This will hide the y labels.

Solution 6 - Javascript

Chart.defaults.scale.ticks.display = false;

Solution 7 - Javascript

Solved it with overriding y-axis labels width

Chart.Scale.prototype.buildYLabels = function () {
  this.yLabelWidth = 0;
};

Solution 8 - Javascript

try this one

 var statDat = {
	labels: ["January", "February", "March", "April", "May", "June"],
	datasets: [
		{
			fillColor: "rgba(255, 152, 0, 0.30)",
			strokeColor: "#f26b5f",
			pointColor: "#f26b5f",
			pointBackgroundColor: "rgba(179,181,198,1)",
			pointBorderColor: "#00fff5",
			pointStrokeColor: "#f26b5f",
			data: [203, 156, 99, 251, 305, 247]
		}
	]
};

var stats = document.getElementById('stats').getContext('2d');

var options = {
	scaleShowLabels: false 
};

new Chart(stats).Line(statDat, options);

Solution 9 - Javascript

if you are using 3.3.2 Y axis will be hidden by this:

options: 
{
    scales: {
        yAxis: {
            display: false,
        }
    }
},

Solution 10 - Javascript

This worked for me with Chartjs v2.4.0

The idea is to set backDropColor to full transparent. 255,255,255 is white, but 0 sets it to transparent.

Then the userCallback returns always an emptry string.

The end result is hidden y-axis labels.

  ticks: {
    backdropColor : "rgba(255,255,255,0)",
    userCallback: function(value, index, values) {
      return "";
    }
  }

Solution 11 - Javascript

 options: {
  scales: {
    yAxes: [{
        ticks: {
            display: false
        }
     }]
   }
 }

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSupriya KaleView Question on Stackoverflow
Solution 1 - JavascriptGene ParcellanoView Answer on Stackoverflow
Solution 2 - JavascriptkehersView Answer on Stackoverflow
Solution 3 - JavascriptManjeetView Answer on Stackoverflow
Solution 4 - JavascriptmQuirozView Answer on Stackoverflow
Solution 5 - JavascriptMerouane T.View Answer on Stackoverflow
Solution 6 - JavascriptmemoView Answer on Stackoverflow
Solution 7 - JavascriptAnton GrigoryevView Answer on Stackoverflow
Solution 8 - JavascriptCharitha GoonewardenaView Answer on Stackoverflow
Solution 9 - JavascriptMd. Hasan MahmudView Answer on Stackoverflow
Solution 10 - JavascriptJannunenView Answer on Stackoverflow
Solution 11 - JavascriptDilJayView Answer on Stackoverflow