I have a Xamarin.Forms Android app with a Syncfusion chart to display some data.
Am I able to programmatic scroll the chart to the end preferable using Bindings to the last item in the ItemsSource?
So given a Area Series with an item source of ChartModel:
<chart:AreaSeries
ItemsSource ="{Binding ChartModel,Mode=TwoWay}"
XBindingPath="PaymentDateFormatted"
YBindingPath="PaidAmount"
Color="#9cd58e">
.....
</chart:AreaSeries>
When the chart displays I would like it to be scrolled to the end by default:
Thanks,
