I have the below function:
myChart.on('click', { targetType: 'axisLabel' }, params => {
var uri = window.location.hash.replace("#", "");
this.router.navigate([uri + '/trips', params.value]);
})
This function returns the error message:
Property 'value' does not exist on type 'unknown'.
The given params
contains value
. But this error keeps popping up. How do I resolve it?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…