Hi Mark,
Please find the below response.
We can set the Gantt columns width at the load time using “load” client side event.
Please refer the following code snippet,
<ej-gantt id="ganttSample" datasource="ViewBag.datasource"
//…
load:"loadEvent">
</ej-gantt>
<script type="text/javascript">
function loadEvent(args) {
var columns = this.getColumns();
columns[0].width = 100;
columns[1].width = 250;
columns[2].width = 250;
} |
Please let us know if you need any other assistance.