Hi
how to properly change event height?
Template of resource is 96px (stage-cell), event is 58px, margin is 6px = 70
if i set
<bryntum-scheduler-pro
[rowHeight]="70"
[barMargin]="6"[/code]></bryntum-scheduler-pro>
columns: [
{
text: "",
cellCls: "stage-cell",
editor: false,
htmlEncode: false,
renderer: ({ record }: { record: any }): string => {
const { id, name, eventColor, startDate, endDate, workType, deadline, description } = record.data;
return `
<app-stage-column stg="${id}" name="${name}" description="${description}" color="${eventColor}" start="${startDate}" end="${endDate}" deadline="${deadline}" wkt="${workType}" description="${description}" >
</app-stage-column>`;
},
align: "start",
width: 220,
autoHeight: true,
},
]
then the event items has big gaps or has larger height
if i remove autoHeight from column then events looks fine but stage-cell are cutted-of
how to deal with it?