You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 19, 2018. It is now read-only.
There seems no way to set the left offset of events.
In the source of angular-bootstrap-calendar.js, from line 3850 - line 3883
functiongetDayView(events,viewDate,dayViewStart,dayViewEnd,dayViewSplit){vardayStart=(dayViewStart||'00:00').split(':');vardayEnd=(dayViewEnd||'23:59').split(':');varview=calendarUtils.getDayView({events: events.map(function(event){// hack required to work with event APIevent.start=event.startsAt;event.end=event.endsAt;returnevent;}),viewDate: viewDate,hourSegments: 60/dayViewSplit,dayStart: {hour: dayStart[0],minute: dayStart[1]},dayEnd: {hour: dayEnd[0],minute: dayEnd[1]},eventWidth: 150,segmentHeight: 30});// remove hack to work with new event APIevents.forEach(function(event){deleteevent.start;deleteevent.end;});returnview;}
There have a key that can set the left offset of every events: eventWidth: 150,
but this 150 is not configurable. So, how should I configure this property to make sure when width is changed, the position of event is changed?
The text was updated successfully, but these errors were encountered:
There seems no way to set the left offset of events.
In the source of
angular-bootstrap-calendar.js
, from line 3850 - line 3883There have a key that can set the left offset of every events:
eventWidth: 150
,but this 150 is not configurable. So, how should I configure this property to make sure when width is changed, the position of event is changed?
The text was updated successfully, but these errors were encountered: