Planner overlapping items size issue

Hello,

I'm having a problem with overlapping items in a TPlanner.

The situation is the following:
I have a TPlanner aligned on the top of the form and with fixed height. The sidebar's position is set to 'spTop' and there is only one position. The mode is set to 'plDayPeriod' and I'm always displaying only 7 days. Each item can be assigned only to one day.

Problem:
When there are a lot of items assigned to one cell they get shrinked and it's not possible to see any text.

If I set the PositionWidth to some value and PositionAutoSize to true it does help but the Items get lost because the Planner's height is much smaller than the resulting height of the Position. The vertical scrollbar does not appear in this situation.
Is it possible to have the scrollbar appear when the position's height is exceeding the planner height? Or is it possible to have a simillar functionality as 'MaxItemsDisplayed' from TPlannerMonthView?

A scrollbar will only appear when there are multiple rows to scroll between rows. Unfortunately there is no built-in support to scroll at pixel level within a row (position). If your height is limited, a possible solution could be to put the TPlanner within a TScrollBox and perform the scrolling via this scrollbox.

Thank you very much for your reply.

In this case is it possible for the TPlanner control to automatically resize when the row changes it's height or do I have to do that manually? Without this the scrollbars in the TScrollBox would not appear.

The Planner itself will not automatically change its height. You'd need to change the Planner.Height after the items were added.

Thank you for your help.