Hello Syncfusionteam,
in my project I use your kanban component similar to your documentation (https://ej2.syncfusion.com/angular/documentation/kanban/swimlane/#render-swimlane-row ). Now I'm wondering how to switch to Responsive Mode (https://ej2.syncfusion.com/angular/documentation/kanban/responsive-mode/#swimlane-layout ) when the individual columns become too small when the width of the browser window is changed.
Best Regards, Adrien P.
Hello,
I know that this functionality takes effect depending on the end device. But my question is if for example a customer wants to use only half of his screen or in an extreme case you have 15+ columns, how to display this possible vividly. As the attached video shows, once you reach a certain width you can't work with Kanban at all. Is there any support regarding Responsive for this use case regardless of the device?
Best Regards, Adrien P.
<ejs-kanban #kanbanObj cssClass="e-width" keyField="Status" [dataSource]="kanbanData"
[cardSettings]="cardSettings" [swimlaneSettings]="swimlaneSettings" height="500px">
<e-columns>
<e-column headerText="To Do" keyField="Open"></e-column>
<e-column headerText="In Progress" keyField="InProgress"></e-column>
<e-column headerText="Done" keyField="Close"></e-column>
</e-columns>
</ejs-kanban> <style>
.e-kanban.e-width {
min-width: 500px;
} </style> |