Hi Mark,
We have analyzed your query, In Gantt we have direct support to change the row height and taskbar height by using “rowHeight” and “taskbarHeight” API’s.
Please refer code snippet below,
|
[app.component.html]
<ej-gantt id="GanttControl" [dataSource]="ganttData" ... [rowHeight]=rowHeight [taskbarHeight]=taskbarHeight>
</ej-gantt> |
|
[app.component.ts]
export class AppComponent {
//..
public rowHeight: any;
public taskbarHeight: any;
public constructor(){
//..
this.rowHeight = 50;
this.taskbarHeight = 40;
}
} |
We have also prepared a sample for your reference, please find the sample from the below location.
Please let us know if you require any other assistance on this.
Regards,
Suriyaprasanth R.