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
160
A few questions
posted

Hello,

i am evaluating the xamPivotGrid and just a few questions are remaining:

  1. Are there any events that are fired when a filter has changed or a Dimension/Measure has been added/moved?
    (the DataSource_ResultChanged is also fired on Drill In/Out, so i cannot use it)
  2. Does the xamPivotGrid support paging?
  3. Is it possible to get the MDX Statement from the Datasource?
  4. Is the Trial Version limited to 1 Cube and 1 Measure? Using more doesnt work for me...
  5. Is it possible to get the member properties of attributes?

 

Thanks,
Dennis

 

 

 

Parents
  • 7922
    Verified Answer
    posted

    Hi Dennis

     

    About your questions

    1.       You can use DataSource’s collections to listen to collection changes  

    pivotGrid.DataSource.Columns.CollectionChanged += Columns_CollectionChanged;

    pivotGrid.DataSource.Rows.CollectionChanged += Rows _CollectionChanged;

    pivotGrid.DataSource.Filters.CollectionChanged += Filters _CollectionChanged;

    pivotGrid.DataSource.Measures.CollectionChanged += Measures _CollectionChanged;

     

    2.       In that version of XamPivotGrid, it does not support paging. But it supports virtualization and memory consuming is low,  and performance is very good.

    3.       We have internal property about MDX query. If you think it is useful we can think about the future o

    4.       You can drop more than 1 measure in pivot grid. If I don’t understand you please describe in more details .

    5.       You can access member by header cell. Member property. What kind of attributes do you want to get?

     

    Regards

    Todor

Reply Children