<sfListView:SfListView x:Name="lwExerciseDetails" BackgroundColor="White" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand"
ItemsSource="{Binding tLogReportModels}" SelectionMode="None" AllowGroupExpandCollapse="True"
ItemSpacing="1" AllowSwiping="False" IsStickyHeader="False" AutoFitMode="Height" >
<sfListView:SfListView.HeaderTemplate>
<DataTemplate>
<Grid x:Name="grdExercise" BackgroundColor="White" >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="2*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
</Grid>
</DataTemplate>
</sfListView:SfListView.HeaderTemplate>
<sfListView:SfListView.DataSource>
<data:DataSource>
<data:DataSource.GroupDescriptors>
<data:GroupDescriptor PropertyName="Name" />
</data:DataSource.GroupDescriptors>
</data:DataSource>
</sfListView:SfListView.DataSource>
<sfListView:SfListView.LayoutManager>
<sfListView:GridLayout SpanCount="1" />
</sfListView:SfListView.LayoutManager>
<sfListView:SfListView.ItemTemplate>
<DataTemplate>
<Grid BackgroundColor="White" >
<Label Text="{Binding Text}" TextColor="Black" VerticalTextAlignment="Start" FontSize="Small" Margin="10,0" LineBreakMode="WordWrap" />
</Grid>
</DataTemplate>
</sfListView:SfListView.ItemTemplate>
<sfListView:SfListView.FooterTemplate>
<DataTemplate>
<Grid VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" >
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Picker Title="{resx:Translate SelectChart,IsUpper=True}" ItemsSource="{Binding ChartCategories}" SelectedItem="{Binding SelectedChartCategory}" Grid.Row="0"/>
<shared:_chartControl HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" Grid.Row="1" MinimumHeightRequest="100"/>
<Label Text="Diagram" Style="{StaticResource lblStyle}" Grid.Row="2" />
</Grid>
</DataTemplate>
</sfListView:SfListView.FooterTemplate>
</sfListView:SfListView>