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
990
datachart with pivotgrid
posted

Dears,

 

i am trying to redraw the datachart, whenever i edit the cell in the pivotgrid

 this.pivotGrid.DataSource.ResultChanged += (sender, e) =>
            {
                generate();
            };

 

but am having a problem, that the datasource of the datachart is a SolidifiedView of ObservableCollection<Market>

the market class has dynamic propertties, so when i edit the cells of the pivotgrid and redraw the chart, it tries to duplicate the properties.

Please advice,

find attached the code.