Gantt Resize Splitter to Fit Task List

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.

Expected result:

Default behavior:

I there a way I can automatically or programmatically size the splitter?

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.

Perfect! Thank yo so much