Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
265
Skip summary rows when draw chart from data of pivot
posted

Hi

I am following the guide to draw the chart from data of pivot. 

https://www.igniteui.com/pivot-grid/chart-integration and 

https://www.infragistics.com/community/forums/p/91528/453001.aspx#453001

I can remove summary columns base on columnSpan, isExpandable, ... of columnHeaders when drawing chart 

I want to remove summary rows like summary columns but I don't know the way remove it.

Example: From below pivot a want to skip summary rows only keep rows(Beans - All country, Banana - All country, Broccoli - All country, Carrots - United States) when drawing the chart.

Can you give me logically to resolve it?

Parents
No Data
Reply
  • 23953
    Offline posted

    Hello Bui,

    In your sample you have two row groups: "product" and "country", that's why it may seem hard to apply the logic you have for the columns. Columns as well as rows have the same object model which is $.ig.OlapTableViewHeaderCell. What I can suggest you to try is to use the memberIndex method as a base for your row business logic. Member index will be the same for "Carrots", "United States", "All Country". You'll have to collect the row cell with the same memberIndex and decide which one of them to exclude from the results in the chart.

    Best regards,
    Martin Pavlov
    Infragistics, Inc.

Children
No Data