Skip to main content
November 13, 2025
Solved

Total for a column in Grid view

  • November 13, 2025
  • 2 replies
  • 0 views

Hi,

We are having a grid view to display data through data adapter.

How to display totals for a column at the bottom of the grid view?

is there property to display total? like below

IsFilterable = False,

IsSortable = False, 

 

 

Best answer by sameburn

Hi suresh_klarna​ 

There is no property in the Grid View component for this.

However, you can use a label discreetly positioned underneath it to achieve the same.

1. Create a Data Adapter that gives you the Total that you desire e.g.



2. Create a Label component and Add the Data Adapter to it and then configure something like below



3. This will render in your Dashboard like this (see Text property above).



So you achieve the same effect, with a little creativity...

Hope this helps

Sam

 

2 replies

sameburnAnswer
November 13, 2025

Hi suresh_klarna​ 

There is no property in the Grid View component for this.

However, you can use a label discreetly positioned underneath it to achieve the same.

1. Create a Data Adapter that gives you the Total that you desire e.g.



2. Create a Label component and Add the Data Adapter to it and then configure something like below



3. This will render in your Dashboard like this (see Text property above).



So you achieve the same effect, with a little creativity...

Hope this helps

Sam

 

November 13, 2025

Hi Sam,

Thanks for detail explanation.
It works!