How to reset scrollposition of ScrollView when navigating to page

hi @Uldis
i have a bit similar problem. I am trying to get a page to scroll to bottom. its related to chat page. Upon load i want the scroll to the bottom (to the latest message). I have trying to do it with following code, but no luck so far. Can you please point me what i am missing. Thanks in advance.

    <DockPanel Margin="10">	
    <Panel>
        <ScrollView ux:Name="chatScroller" RelativeScrollPosition="0,1">
            <StackPanel ItemSpacing="10" >
                <Each Items="{messageListData}">
                    <Panel>
                        <Grid Columns="1*" CellSpacing="6">
                            <Panel Padding="10" Alignment="{alignment}" >
                                <Text FontSize="14" Color="#555555" TextAlignment="{alignment}" Value="{message}" TextWrapping="Wrap" />
                                <Rectangle CornerRadius="6" Layer="Background">
                                    <Stroke Color="{color}"/>
                                </Rectangle>
                            </Panel>
                        </Grid>
                    </Panel>
                </Each>
            </StackPanel>
        </ScrollView>
    </Panel>
</DockPanel>