All Desktop related interactivity features, such as tools, mouse events etc. are moved to the Nevron.Chart.Windows namespace. This is required because these classes are shared between the WinForm and Wpf contorls. The following code snippet shows how to port previous code to the new version:
C# |
Copy Code
|
---|---|
using Nevron.Chart.Winform; |
becomes:
C# |
Copy Code
|
---|---|
using Nevron.Chart.WinForm; using Nevron.Chart.Windows; |