Mounika
Mounika

Reputation: 1

Unable to access System.Windows.Forms for Android app

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

Answers (1)

Patrick Hofman
Patrick Hofman

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

Related Questions