Hello all,
I am relatively new with UWP and experimenting SyncFusion and i am trying to bind array of List<string>
List<string> x1 = new List<string> { "One", "Two","Three", "four" };
List<string> x2 = new List<string> { "Million", "Trillion" };
ObservableCollection<List<string>> xxx = new ObservableCollection<List<string>>();
xxx.Add(x1);
xxx.Add(x2);
datagrid1.ItemsSource = xxx;
But columns displayed are "Capacity, Count and item ". Can anyone guide me with xaml binding syntax to display above values in list<string>
<syncfusion:SfDataGrid x:Name="datagrid1" />
Regards