Performance in UWP Charts (SfChart)

10 May 20211 minute to read

  • When your underlying data object implements INotifyPropertyChanged, you need to enable the ListenPropertyChange property of the series, to make the chart listen to the property changes of your data object. However enabling this property registers PropertyChanged event of every object in the data source. Due to this, chart’s loading time is affected when there are a large number of points. By default, ListenPropertyChange is set to false in order to avoid the event registration unnecessarily.
  • In case of a LineSeries, when you have large number of points to plot, you can make use of fast series types like FastLineSeries and FastLineBitmapSeries.
  • In case of a ColumnSeries, when you have large number of points to plot, you can make use of FastColumnBitmapSeries.
  • You also have Fast Series types for financial charts like HiLo and HiLoOpenClose and they are named as FastHiLoBitmapSeries and FastHiLoOpenCloseBitmapSeries respectively.