hectorthedog Posted February 10, 2012 Report Share Posted February 10, 2012 Hi. I can find no samples demonstrating Chart (or ChartView) usage in MVVM scenarios. Do SoftwareFX or anyone in the user community have such samples they can share? Many thanks htd Quote Link to comment Share on other sites More sharing options...
AKhristenko Posted May 4, 2012 Report Share Posted May 4, 2012 That's briefly how we are doing it. In your view: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:vm="clr-namespace:your-viewmodel-project-here"> <DataTemplate DataType="{x:Type vm:ChartWidgetViewModel}"> <ContentControl Name="ChartWidgetViewModelContent" Template="{DynamicResource ViewModelLoadingTemplate}" /> </DataTemplate> <ControlTemplate TargetType="{x:Type ContentControl}" x:Key="ChartWidgetViewContentTemplate"> <Grid> <cfx:Chart> </cfx:Chart> </Grid> Then you can declare your VM class: public class ChartWidgetViewModel Quote Link to comment Share on other sites More sharing options...
asteele Posted October 3, 2012 Report Share Posted October 3, 2012 Is there anyway this example can be elaborated upon? When I try to make use of its guidance I get an error saying VM does not exist after attempting the xmlns delcaration for it. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.