We are using a third party Chart control which was developed using WPF and that doesn’t support MVVM. Now we need to add few more functionality and that should support Add/Remove feature on demand. We need to create Wrapper Chart control with new features and that should support MVVM. This dll/Module will be used by a few other Modules/Projects.
Note :
For every new feature we created Handler and composed the existing chart control. So we were able to support add/remove feature on demand.
Question :
How to support MVVM, is it for each FeatureHandler should i create ViewModel which wrap FeatureHandler(View) and looks like MVVM? Need clarification on this part…..
What do you mean dosen’t support MVVM? I sounds fairly unlikely that a chart control developed with WPF dosen’t expose properties in form of dependency properties. Do you have link to this third party chart control?