Scroll bar visible at bottom to the page

Hi

I need to show the horizontal scrollbar at the bottom to the page.
I have several columns with fixed width, for this reason to scroll to the right, it is annoying to go to the bottom of all the records so that the user can view the scroll bar and move to the last columns on the right.

I attach an image...

Can you help me, please!

Attachment: KANBAN2_e1d3ddd6.rar

3 Replies 1 reply marked as answer

RV Ravikumar Venkatesan Syncfusion Team February 22, 2021 11:38 AM UTC

Hi Jose, 

Greetings from Syncfusion support. 

We have validated your requirement at our end and achieved it with the help of the Width property of the Kanban as shown below and for the same, we have prepared a sample that can be downloaded from the below link. 

 
[Index.razor] 
@using Syncfusion.Blazor.Kanban 
 
<SfKanban TValue="TasksModel" KeyField="Status" DataSource="Tasks" Height="100vh" Width="1600px"> 
    <KanbanColumns> 
        <KanbanColumn HeaderText="Backlog" KeyField="@(new List<string>() {"Open"})"></KanbanColumn> 
        <KanbanColumn HeaderText="In Progress" KeyField="@(new List<string>() {"InProgress"})"></KanbanColumn> 
        <KanbanColumn HeaderText="Testing" KeyField="@(new List<string>() {"Testing"})"></KanbanColumn> 
        <KanbanColumn HeaderText="Done" KeyField="@(new List<string>() {"Close"})"></KanbanColumn> 
    </KanbanColumns> 
    <KanbanCardSettings HeaderField="Id" ContentField="Summary"></KanbanCardSettings> 
</SfKanban> 

Output:  
 

Kindly try the above sample and get back to us if you need any further assistance. 

Regards, 
Ravikumar Venkatesan 


Marked as answer

JL jose luis barajas March 2, 2021 09:36 PM UTC

Hi Ravikumar 

Thanks for your support!


NR Nevitha Ravi Syncfusion Team March 3, 2021 03:13 AM UTC

Hi Jose, 

You are most welcome..! please get back to us if you need any further assistance. 

Regards, 
Nevitha 


Loader.
Up arrow icon