Since there is no "goto today" functionality (which I requested in a separate ticket). It is a pain to find the current timeslot in the timeline by scrolling.
The current timeslot should be highlighted by a specific background color or by a vertical line through the timeline.
Please add Parameters "TreeListSelectionMode" and "TreeListSelectedItems".
UseCase1: Group Selected Items (create new Element as Parent of all selected Elements)
UseCase2: Postpone Selected Items by x days
There should be a way to programatically scroll to a specific day in the timeline.
UseCase 1: Goto Today Button
UseCase 2: Upon clicking on a line in tree list the timeline should display this task in the timeline.
Hello
Could we add a "decade" view for the Gantt chart? (currently goes until Year)
If the Blazor Gantt chart schedule items span over many years/decades, the Gantt is unusable and crashes.
Our clients' use case is the management of multiple long-term leases; spanning up to 15-30 years.
See the attached image as an example in PowerBI where they have a "decade" view.
Regards
Phil
How to get only the year and date in the Gantt Chart Tooltip template? The DataAttribute is not a valid date string.
<TooltipTemplate>
<h4>@(((TooltipTemplateContext)context).Title)</h4>
<h5>Start: @(((TooltipTemplateContext)context).DataAttributes["start"])</h5>
<h5>End: @(((TooltipTemplateContext)context).DataAttributes["end"])</h5>
</TooltipTemplate>
Hello, It should be possible to rearrange the order of the Gantt elements using drag and drop. This function already exists in the TreeList component and is also necessary for us in gantt.
It is very strange that while the Gantt component is similar to the gorgeous Grid component, support for row and header templates has not been released.
We await implementation
<GanttColumn>
<HeaderTemplate Context = @ myContext>
</HeaderTemplate>
<Template Context = @ myContext>
</Template>
</GanttColumn>
**Admin Edit**
Will be released in 3.1.0.
**Admin Edit**
By default, all nested tasks are displayed expanded.
The state of the root task is always the most important, so it makes more sense to display tasks minimized by default.
The user can always expand the required task for details.
The solution is to support the "IsExpanded" property for the task model.
When a property changes, the task changes its state.
For the component, also add the "ExpandAll" and "CollapseAll" methods that affect all tasks in the list.
The current implementation of the double-click task edit feature is not an intuitive user interface action.
Also, there is absolutely no need to automatically edit the properties of the task model when you click on GanttColumns.
Give the developer independent control over the behavior of the edit event.
Necessary solutions:
1. Implement support for the "IsEnabled" task model property that disables editing the property for the GanttColumn and double-clicking on the Timeline panel
2. Implement support for the "Edit" command for the GanttCommandButton
When I describe a EditorTemplate on a GanttColumn, I expect it to be shown on entering the edit-mode:
<GanttColumn Field="@nameof(ActivityContainer.TaskName)" Title="@_["_name"]" Expandable="true" Resizable="true" >
<EditorTemplate>
<strong>I expect this to see</strong>
</EditorTemplate>
</GanttColumn>
Expected: Just the string "I expect this to see"
What I actually get:
The default edit box (feels like the EditorTemplate doesn't apply at all?)
Docs (https://docs.telerik.com/blazor-ui/api/Telerik.Blazor.Components.GanttColumn#collapsible-Telerik_Blazor_Components_GanttColumn_EditorTemplate) say, that the GanttColumn has a EditorTempalte.
---
Side effect:
<GanttColumn Field="@nameof(ActivityContainer.TaskName)" Title="@_["_name"]" Expandable="true" Resizable="true" >
<EditorTemplate>
<strong>@((context as ActivityContainer)?.TaskName)I expect this to see</strong>
</EditorTemplate>
</GanttColumn>
error CS0103: The name 'context' does not exist in the current context
Context should be there.