Chartjs-Which type of chart is this in Chart.js?

1👍

This type of chart is called horizontal bar chart. So, you should set type …

var chart = new Chart(ctx, {
    type: 'horizontalBar',
    data: data,
    options: {}
});

Leave a comment