# Events

This sample demonstrates how to use the event hooks to highlight chart elements.

const config = {
  type: 'pie',
  data: data,
  options: {
    plugins: {
      legend: {
        onHover: handleHover,
        onLeave: handleLeave
      }
    }
  }
};

# Docs

Last Updated: 10/28/2024, 1:36:05 PM