Hi there,
I thinking buying this product, because i need a stacked bar chart for Monotouch (for now...i will need more). But I can not see one good sample. Can you help me? I need something like that..simple: (thanks!!)
The code in this help link: http://es.infragistics.com/help/topic/53d75e81-b590-4294-aadb-2bb5d7afde46
give a error in this line:
stackedChartDataSourceHelper = new IGStackedSeriesDataSourceHelper(_data.ToArray(), NSArray.FromObjects("Value1", "Value2", "Value3"));
say can not convert objecto to array....
thanks
You would need to change the code in the sample to
List<NSString> valueList = new List<NSString> (); valueList.Add (new NSString("Value1")); valueList.Add (new NSString("Value2")); valueList.Add (new NSString("Value3")); _stackedChartDataSourceHelper = new IGStackedSeriesDataSourceHelper( _data.ToArray(), valueList.ToArray());
and add the following #usings
using Infragistics; using System.Collections.Generic; using MonoTouch.ObjCRuntime;
attached is the .cs class with the changes