Hello!
I am trying to retrieve the content of the PivotGrid to CSV format and I am using CsvFormatProvider.Export method for that.
The PivotGrid is populated using LocalDataSourceProvider that is bounded to an ObservableCollection.
The problem I am experiencing is that after updating the collection, the pivot table doesn't immediately reflect the new data, and therefore I can't manipulate the grid's content. I was trying to find an event that is raised after the Pivot Table is updated (I guess then the IsBusy property of PivotGrid is false), but couldn't find one.
I have tried "Loaded" and "Initialized" events of Pivot Table but none of them are raised after the Table is updated.
So, can you please tell me how can I know when is the new data seen in the Pivot Table?
I want to be able to retrieve the content of the grid in CSV format right after updating the ObservableCollection of the LocalDataSourceProvider.
Thank you in advance,
Sincerely,
Alexander