# Interaction Modes

This sample shows how to use the tooltip position mode setting.

const config = {
  type: 'line',
  data: data,
  options: {
    interaction: {
      intersect: false,
      mode: 'index',
    },
    plugins: {
      title: {
        display: true,
        text: (ctx) => {
          const {intersect, mode} = ctx.chart.options.interaction;
          return 'Mode: ' + mode + ', intersect: ' + intersect;
        }
      },
    }
  }
};
Last Updated: 12/5/2021, 1:41:45 PM