Hi,
The solution with "justify-content: flex-end;" works very well. I'm using this now to align events with numbers to the right. However I have also events with text, which I want to align to left. I used onBeforeEventRender event and the cssClass property. But the CSS class "time-reporting-board-event-workprofile" is added to *_event CSS class which get overriden by the *_event_inner CSS class
onBeforeEventRender: (args) => {
if (args.data.tags.rowTypeKey == 'Workprofile') {
args.data.cssClass = 'time-reporting-board-event-workprofile';
}
}
Is there any solution for conditional aligment of the event's text?
Thank you