Clicking on a Datamarker in a Chart

Is there a way of hooking the click on a DataMarker? We are also displaying data in a Table so when the user clicks on the DataMarker I'd like to highlight the row in the Table

Thanks

2 Replies 1 reply marked as answer

PA Pat March 9, 2021 11:49 AM UTC

Found it, pointClick="chartCustomPointClick"


DG Durga Gopalakrishnan Syncfusion Team March 10, 2021 12:54 PM UTC

Hi Pat,

As mentioned in update, your requirement can be achieved using pointClick event. For more information about chart related events kindly check with below API reference link.

<script>
function pointClick(args)
{
    //....
}
</script>


Please get back to us if you need any further assistance.

Regards,
Durga G


Marked as answer
Loader.
Up arrow icon