Hi Nam,
Greetings from Syncfusion.
We checked the provided sample and would like to let you know that instead of updating the SneakersDetail property mentioned as Update, hence only the updated ItemsSource property is not reflected in the Chart. Please change the code as per in below
public class ViewModel : NotificationObject
{
public ICommand icmTest { get; set; }
private ObservableCollection<Model> sneakersDetail;
public ObservableCollection<Model> SneakersDetail
{
get { return sneakersDetail; }
set
{
sneakersDetail = value;
RaisePropertyChanged("SneakersDetail");
}
}
…
} |
I hope this information helps. If you need any further assistance, please don't hesitate to contact us.
Regards,
Hemalatha M.