Reputation: 5002
In week mode, There is month/day title in x-axis label.. But I just want to name of day
here is current view:
You see "Sun 3/6","Mon 3/7","Tue 3/6",.. I want these titles "Sunday","Monday","Tuesday".. Is there any way do this within plugin or I have to implement it manually
Upvotes: 2
Views: 1928
Reputation: 1465
Try columnFormat in your calendar configuration.
columnFormat: 'dddd',
firstDay:1 // Monday as first day of week
Upvotes: 2
Reputation: 5002
I found the solution with using columnFormat property. it simple use only daynames with:
var calendar = $('#calendar').fullCalendar({
//isRTL: true,
axisFormat: 'HH:mm',
columnFormat: "ddd",
timeFormat: {
agenda: 'HH:mm'
},...
Upvotes: 1