Renaming Y-Axis

  options: {

        scales: {
            yAxes: [{
                ticks: {
                    // Create scientific notation labels
                    callback: function(value, index, values) {
                        return value + ' %';
                    }
                }
            }]
        }
    }

Comments

Popular posts from this blog

Exporting HTML Page into PDF In Django

C PROGRAMMING LANGUAGE