Is is possible to render a angular component into DayPilotMonth cell template html?
I'm trying to pass nativeElement as HTML attribute, but it doesn't work. Only renders "[object HTMLElement]".
onBeforeCellRender = (args: any) => {
const factory = this.resolver.resolveComponentFactory(CellComponent);
const component = factory.create(this.injector);
component.instance.content = 'testContent';
component.changeDetectorRef.detectChanges();
args.cell.html = component.location.nativeElement;
}