Horizontal Scrolling

Is it possible to horizontally scroll the kanban board rather than it squeezing everything into the container?  It looks like allowScrolling was an option in EJ1 but it's been removed?  Or is there another way to achieve this?  


2 Replies

VJ Vinitha Jeyakumar Syncfusion Team October 30, 2023 12:15 PM UTC

Hi Heather,


We'd like to clarify that currently, we don't have a property to enable scrolling within the Kanban control in EJ2. We will conduct further validation regarding your requirement and explore the possibility of achieving it through CSS styles within your application. We will provide you with additional details as soon as possible.

Regards,
Vinitha


VJ Vinitha Jeyakumar Syncfusion Team November 6, 2023 10:37 AM UTC

Hi Heather,


We have prepared a sample as per your requirement to enable horizontal scrolling in Kanban board using the CSS styles like below,

Code snippet:
.e-kanban
        .e-kanban-content
        .e-content-row:not(.e-swimlane-row)
        .e-content-cells
        .e-card-wrapper,
      .e-kanban
        .e-kanban-content
        .e-content-row:not(.e-swimlane-row)
        .e-content-cells
        .e-card-container {
        min-width250px;
      }
      .e-kanban .e-kanban-table {
        table-layoutunset !important;
      }
      .ColHeader {
        min-width250px;
      }






Regards,
Vinitha

Loader.
Up arrow icon