I want to increase the height of interval in full calendar , my events would be 15 minutes slots .But for now its very small section,really not able to see it clearly .I've tried with css,but not worked out.Anybody can help ?
Just play with contentHeight option to adjust for your needs.
See on this jsfiddle example a contentHeight of 2500px and slotMinutes of 15.
Related
I have a Qdialog with a horizontal layout and a couple of elements. Now, I want the height to be fixed at its minimal possible size (while the width is still resizeable).
There are a couple of properties I can set, for example:
sizePolicy, minimumSize, maximumSize, baseSize, layoutSizeConstraint
I tried to understand how the values interact and a couple of combinations but none got me what I want.
For example, I can enter the smallest Height possible in maximumSize, in my case 178, and set the Vertical Policy in sizePolicy to Fixed. But then it is only fixed to a small range: I can still resize the dialog's height slightly to make it slightly smaller.
This type of tasks can not be done with Qt Designer, the minimum size if you use layouts is the sizeHint(), for example in your case the solution is:
dialog.setFixedHeight(dialog.sizeHint().height());
Try to set minimumSize.Height and maximumSize.Height with same values
or
Just set fixed height in code
Dialog dialog;
dialog.setFixedHeight(dialog.height());
dialog.exec();
I'm trying to custom the Scheduler to make the slot larger but when I apply the width it doesn't work, curiosity the height do.
e.g
Someone know how to make it?
resourceAreaWidth: "13%", // Determines the width of the area that
contains the list of resources.
this one work for me in V5.
I am trying to display the calendar with NO scrollbar on the right. I tried setting contentHeight but it is not working as intended. There is no scrollbar and the calendar is all displayed, but it streches the rows so that they are all the same height as the row with the most events.
Example, row 3 of the month has 10 events, so the row will strech to display all 10 events, however ALL other rows will have the same height even empty rows.
I tried with this value. contentHeight: 2800
The EventLimit is set to False. As I want every events to be displayed.
Thanks for any help.
Have you tried to set the height to auto? Check to official doc.
I hope it helps. ;)
I'm using this basic example http://fullcalendar.io/js/fullcalendar-scheduler-1.3.2/demos/theme.html
Wanted to increase size between timeline hours, so if I have 20min event then title dont show up fully
any suggestions ? thanks
You don't need to do anything with the default calendar settings. If an event is less than the 30-minute slot, it will occupy only a part of this slot.
ended up increasing width of this class
.fc-timeline .fc-head .fc-cell-content .fc-cell-text {width: 400px;}
I am trying to restyle a instance of FullCalendar so that the day and week views run the entire height of the web page. i.e. I do not want a scrollbar to view the entire day. I tried removing overflow and the fixed height but that doesn’t work.
Is it possible to do this?
You can change the slotMinutes when creating the chart http://arshaw.com/fullcalendar/docs/agenda/slotMinutes/
and then you can adjust the content height to fit it all in there with this
http://arshaw.com/fullcalendar/docs/display/contentHeight/