[Chartjs]-Using Chart.js, how do I avoid having tooltips overlap?

1👍

You can achieve some overlap solution using these snippets:

tooltips: {
    mode: 'index',
    intersect: false,
    yPadding: 2,
    xPadding: 2,
    caretSize: 0,
    borderWidth: 0,
}

Leave a comment