Hi,
I've a xaml page like this:
<ScrollView Orientation="Vertical" VerticalOptions="FillAndExpand">
<StackLayout>
[other controls]
<StackLayout x:Name="ChartArea" VerticalOptions="FillAndExpand">
</StackLayout>
[other controls]
</StackLayout>
</ScrollView>
Programmatically I add some dataGrids into ChartArea stacklayout. Until the grids don't reach the page limit and there is no vertical scroll bar everything works fine, I can scroll inside each grid and see each raw. The issue comes when the vertical scroll bar shows up and I can only scroll the entire page but I cannot scroll inside each grid.
Can you please help?
Thanks,
Stefano