Author Topic: Repeated summary  (Read 1947 times)

EPM Solutions

  • Pro Ultimate
  • Full Member
  • *
  • Posts: 182
    • View Profile
Repeated summary
« on: July 11, 2017, 12:27:39 pm »
How can we stop repeating the summary if we have applied groups on multiple columns
I have followed your below URL here it's displaying one summary row and I want exactly the same.
 https://paramquery.com/pro/demos/group_rows_hidden

Issue- Please refer my below screenshot why summary repeating.



paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6298
    • View Profile
Re: Repeated summary
« Reply #1 on: July 11, 2017, 06:01:53 pm »
Every group level has corresponding summary row, that's why there are 3 summary rows for 3 grouping levels in the screenshot.

Summary rows in your case have same values because there is only one entry in the sub-groups.

If you need summary row for the top level grouping only, then you can use

groupModel.showSummary: [true, false, false]
« Last Edit: July 11, 2017, 06:05:21 pm by paramquery »

EPM Solutions

  • Pro Ultimate
  • Full Member
  • *
  • Posts: 182
    • View Profile
Re: Repeated summary
« Reply #2 on: July 12, 2017, 02:31:30 am »
Thanks!!