Hi, I'm trying to change the name of the "TODAY" button of the header bar of my schedule component.
I can change the others title views with the ViewDirective and applying displayName but for the specific title of "TODAY" I can't
return (
<ScheduleComponent height='90%' currentView="Week" eventSettings={{ dataSource: localData.dataSource }} dragStart={onDragStart} resizeStart={onResizeStart}>
<ViewsDirective>
<ViewDirective option="Day" startHour="06:00" endHour="23:00" displayName="Hoy"></ViewDirective>
<ViewDirective option="Week" showWeekend={true} displayName="Semana"></ViewDirective>
<ViewDirective option="Month" showWeekend={false} displayName="Mes"></ViewDirective>
<ViewDirective option="WorkWeek"></ViewDirective>
<ViewDirective option="Agenda" displayName="Agenda"></ViewDirective>
<ViewDirective option="TimelineDay"></ViewDirective>
<ViewDirective option="TimelineMonth"></ViewDirective>
</ViewsDirective>
<Inject services={[Day, Week, WorkWeek, Month, Agenda, TimelineViews, TimelineMonth, DragAndDrop, Resize]}/>
</ScheduleComponent>
)