Reputation: 3532
Does anyone know if the types in the .NET 4.0 release of System.Windows.Forms.DataVisualization can be used in WPF? I'm looking to develop a .NET 4.0 WPF application which will create 2D plots and cannot tell from if the WPF toolkit is now necessary in .NET 4.0.
Upvotes: 2
Views: 1552
Reputation: 1806
The charts in System.Windows.Forms.DataVisualization are Winforms charts, but they can still be used in WPF if you use a WindowsFormsHost
. See MSDN.
Upvotes: 1