I’m evaluating the Gantt component and having trouble with the layout. The splitter always appears in the center but I would like to automatically size it to fit the task list.
You can control the splitter position with the LeftPaneWidth parameter of RadzenGantt. It accepts any CSS length and defaults to 50%. Set it to the total width of your task list columns plus a bit of room for the scrollbar, for example:
<RadzenGantt ... LeftPaneWidth="600px">
To size it programmatically, bind the parameter to a field and assign a new value when needed. The pane follows the new value on the next render.
There is no automatic "fit to columns" mode at the moment.