After installing Syncfusion.SfChart using the standard Visual Studio 2017 NuGet interface into a Xamarin.Forms Shared Project (all three platform projects: Android, iOS, and UWP), I added a simple line to my vanilla MainPage.xaml.cs:
public MainPage() {
...
var x = new Syncfusion.SfChart();
...
}
Although Intellisense autocompleted it for me, I get Ye Olde Red Squigglies (shown as a boring red underline above) with the following error:
'Syncfusion.SfChart' is a namespace but is used like a type
If I attempt to build anyhow I get the same thing but with a helpful error code (as expected):
error CS0118: 'Syncfusion.SfChart' is a namespace but is used like a type
I'm only trying to build and make Android work first, and References appear to be in order but I even went ahead and added the extra code for iOS and UWP
as directed.
But no dice. Could this be a version thing? I have a Community License for Essential Studio, but it is version 14.3.0 and I realize that's not the latest version.