Hi,
I have a DXGrid and DXChart in different DockPanels in a DockLayoutManager. I am using MVVM and the Grid and chart are bound to the same Observable Collection in my view model.
When I initialize and load items into the ObservableCollection the grid and chart both update accordingly and display the data.
When I edit data in the grid, however, the chart is not updated. The Grid binding is set to TwoWay and data is definately changing becuase I am able to save changes to my back end database.
If I call
chart.UpdateData();
then the data in the Chart is refreshed and shows correctly, but it appears the binding is not working as expected. Its like the chart binding is always stuck in OneTime mode.
Based on this answer this appears by design ?
http://www.devexpress.com/Support/Center/Question/Details/Q289189
Has any option been added to allow this to be user configurable ? I appreciate its resource intensive - but I don't have many data points so the performance penalty in my case would be acceptable.
Thanks
Chris