Good day! There is a schedule
$(function() { $(document).ready(function() { $('#container').highcharts({ chart: { type: 'pie' }, plotOptions: { pie: { allowPointSelect: true, dataLabels: { enabled: false }, showInLegend: true } }, series: [{ name: "Brands", data: [{ name: "Safari", y: 4.77 }, { name: "Opera", y: 0.91 }, { name: "Proprietary or Undetectable", y: 0.2 }] }] }); }); });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://code.highcharts.com/highcharts.js"></script> <div id="container"></div>
, how can you call an alert (with a value) when you hover on a point in the legend?