[Chartjs]-How to show tooltip value of all data falling on the same axis in chart js?

1👍

You have to use the below configuration in the tooltip.

options: {
   tooltips: {
    mode: 'index',
    intersect: false,
    position: 'nearest'
  }
}

More tooltip examples here

Leave a comment