Got troubles with angular syncfusion scheduler. Does anyone has an idea how to get working custom tooltipe event as per documentation its noted to add template:
<ng-template #eventSettingsTooltipTemplate let-data>
<div>My template</div>
</ng-template>
and enable tooltip within EventSettingModel enableTooltip: true
but with this done nothing from the template above appears, am I missing something in this way?
Another way is by providing tooltipTemplate: '<div>stringtmplate<div/>'
but not nice to have string within a component file instead template, how can I implement it in a proper way?