# 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: 12/1/2024, 4:35:13 PM