# 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: 5/17/2024, 12:33:38 PM