Here is a function that I have:
myChart.on('click', { targetType: 'axisLabel' }, params => {
var uri = window.location.hash.replace("#", "");
this.router.navigate([uri + '/trips', params.value]);
})
However, when using this function, an error message is returned:
Property 'value' does not exist on type 'unknown'.
The params
object actually contains the property value
. How can I fix this recurring error?