In highcharts, by clicking on the data points, I need to redirect to another page by passing the points values in react. I'm using reach/router. Is there any by which we can make a point like a react/router Link.
plotOptions :{
series: {
cursor: 'pointer',
point: {
events: {
click: function () {
console.log(this);
// want to redirect to other component like Link in Reach/router.
}
}
}
}
}