Chartjs-How to display labels at top of charts(chart.js)

0👍

Add a legend to your config:

{

    type: 'pie',
    data: {
        ...
    },
    options: {
        legend: {
            position: 'top'
        }
    }
    ...
}

Example:

var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
    type: 'pie',
    data: {
        labels: [ "My", "Dataset", "Labels" ],
        datasets: [{
            data: [ 22, 33, 44 ],
            backgroundColor: [ '#007bff', '#dc3545', '#9932CC' ]
        }]
    },
    options: {
        legend: {
            position: 'top'
        }
    }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.js"></script>
<div class="container">
  <div>
    <canvas id="myChart"></canvas>
  </div>
</div>

Leave a comment