HelloI pivotGrid with a data source as a XmlaDataSource based on SSAS.I want to change the data according to multiple parameters entered in the Silverlight application.I thought to get there by this.FullResult.Cells [0,0]. Value = ((float) this.FullResult.Cells [0,0]. Value) * 2, but this property is read-only.Do you know how to get a handle the data of the pivotGrid in code behind?cordiallyMARQUIS Vincent
Hi
You can set value by using the SetValue method. See sample below
this.pivotGrid.DataSource.Result.Cells[0, 0].SetValue(2, "", ""); this.pivotGrid.ArrangeLayout()
To ensure the changes are displayed call ArrangeLayout
RegardsTodor
Thank you