I just downloaded the TeeChart trial version for Mono Android using the installation as below:
TeeChartMfAEval-4.0.2012.121203-win.exe
I am running Visual Studio 2012 Ultimate on Windows 8. I am trying to build the demo project, but am getting the error below:
The type 'Android.Widget.FrameLayout' is defined in an assembly that is not referenced. You must add a reference to assembly 'Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=c4c4237547e4b6cd'.
I also get the same error if I try add the TeeChart assembly to my main project, which is for an established app, so clearly the reference to Mono.Android is fine. For example, the following code:
Android.Widget.FrameLayout fl;
Steema.TeeChart.TChart tChart;
throws up a compilation error on the second line.
Any ideas?
Update:
It turns out that if you download the trial library from the Xamarin Components webpage, then the library is more up to date and indeed works. I was downloading from the TeeChart website 'Downloads' area, which is obviously out of date.
Thanks to CheeseBaron for pointing me in the right direction.