Try using the TypeScript syntax:
constructor(private router: Router) { }
config: any = {
onEventClicked: args => {
this.router.navigate(.....);
}
}
When using the JavaScript syntax "this" points to DayPilot.Scheduler instance instead of your component:
config: any = {
onEventClicked: function(args) {
// this === DayPilot.Scheduler instance
}
}