我想手动更改宽度和高度。我可以在日历选项中更改高度和纵横比:
this.options = {
height:700,
aspectRatio:1.5}
但是,我不知道如何更改日历的宽度
我还尝试将其放入CSS文件中:
.ng-fullcalendar{
width:50%;
margin-left: 300px;
}
但这并没有改变任何东西。
编辑:
这是一个堆叠闪电战 https://stackblitz.com/edit/ng-fullcalendar-demo?file=app%2Fapp.component.css
创建新的自定义类
我已经在堆栈闪电战上创建了一个演示
.my-ng-fullcalendar{
width:50%;
margin-left: 300px;
}
<div *ngIf="calendarOptions" class="my-ng-fullcalendar">
<ng-fullcalendar #ucCalendar [options]="calendarOptions" (eventClick)="eventClick($event.detail)" (eventDrop)="updateEvent($event.detail)"
(eventResize)="updateEvent($event.detail)" (clickButton)="clickButton($event.detail)"></ng-fullcalendar>
</div>
在模块中找到 width 属性后,可以添加此属性:
例如:
.ng-fullcalendar {
width: 50% !important;
margin-left: 300px !important;
}
您可以将 css 样式应用于包含日历的div
<div style="width:50%"><ng-fullcalendar></ng-fullcalendar></div>
组件中没有ng-fullcalendar
类。您必须将样式应用于元素。您可以在此处查看演示。
基本上,您必须应用以下样式。
ng-fullcalendar {
position: absolute;
width: 50%;
margin-left: 300px;
}