Reputation: 1
We built .net application in C# which uses System.Windows.Forms.Datavisualization.Charting.
I tried Xamarin android sample application successfully but unable to use System.Windows.Forms.
How can we port above application to android platform?
Upvotes: 0
Views: 397
Reputation: 156978
As you can see in the documentation System.Windows.Forms.Datavisualization.Charting
isn't one of the ported namespaces in the framework. You can't use it.
You have to revert to another charting framework.
Upvotes: 2