[Chartjs]-ChartJS tooltip position / placement

3👍

Assuming you still need help with this.
Add the following option:

 options: {
    tooltips: {
        yAlign: 'top'
    }
}

1👍

In Chartjs v3, this works:

options: {
    plugins: {
        tooltip: {
            yAlign: 'bottom'
        }
    }
}

Leave a comment