i found the problem that is line
this.OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
i setup animation on chart and if i use standard ObservableCollection and i do foreach loop in order to add all items to my chart, i can see animation only the first time.
so found on xamarin form this class ObservableCollectionFast that let you to add all items and fire only once the property changed.
with this on ios i can see all animation but on android breaks.
can you help me?
thanks