Unplanned
Last Updated: 28 Feb 2025 10:53 by ADMIN

It seems that whenever a task crosses the date where the daylight saving time switch appears everything on the gantt's week view gets shifted by 1 hour.

This stackblitz shows 2 Gantts. The first one has correct positioning, the second one appears to be bugged.

In this picture, you can see that in the 1st Gantt `Item 1` is slightly shifted to the right and covers Thursday and Friday. That's because its date is specified in UTC as `2025-04-03T00:00:00.000Z` which, for me in the UK, will result in `01:00:00.000`.
However, in the second Gantt `Item 1` now fully covers Thursday and doesn't extend to Friday even though the start and end dates are the same as in the first Gantt.

You might get slightly different positioning based on your time zone. The description is written based on the UK time zone.

It also affects drag-and-drop marquee. If you try to drag the right side of item 1, you'll see that it will show Saturday even before it starts covering Saturday.

Expected behaviour: Item 1 has to be positioned identically on both timelines

Won't Fix
Last Updated: 17 Feb 2025 08:29 by ADMIN

Kendo timeline range in the gantt can be miscalculated if children have start and end days earlier that their parent.

This happens to due oversight in TimelineBaseViewService.getRange function. Two variables startResult and endResult are calculated using only top-level entities from the supplied data hierarchy.

This stackblitz shows 2 cases.

  1. The item is out of the bounds on the left due to an earlier start date than its parent's start date.
  2. The item is rendered either as three dots or out of bounds on the right side (depends on the browser. Firefox tend to display three dots, Chrome clips the right side) due to end date being later than its parent's end date.

That's mostly visible on Day and Week timelines, however I believe can be reproduced on monthly and yearly views if the date spread is large enough.

 

Unplanned
Last Updated: 13 Feb 2025 08:59 by ADMIN
Created by: Serhii
Comments: 1
Category: Gantt
Type: Bug Report
0

Currently tooltip can be rendered outside of the gantt component if item on the timeline is long enough to be outside of the timeline viewport.

Adjusting [taskTooltipOptions] doesn't help as tooltip will still be outside of the timeline viewport.

Steps to reproduce.

  1. Open Stackblitz
  2. Scroll to Sat 19/04
  3. Hover mouse of Sat 19/04 slot

Unplanned
Last Updated: 11 Feb 2025 09:02 by ADMIN

The tooltip data isn't loaded properly when the mouse lands on the item due to the horizontal scroll rather than moving moues manually. This behaviour is mostly noticed on touchpads due to gestures.

See stackblitz.

Steps to reproduce

  1. Place the mouse pointer before any item on the gantt
  2. Scroll to the right or left without moving the mouse so the pointer stops on the item

It's important not to move the mouse, as soon as any action like movement or click happens the tooltip loads the data.

See the attached video.