public ChartValues<ObservablePoint> Series1 { get; set; }
public void GeneratePlot(PlotInfo plotInfo)
{
DataContext = null;
Series1 = new ChartValues<ObservablePoint>();
Series1.AddRange(plotInfo.SeriesIn);
DataContext = this;
}
How can I add point one and wait 200ms and add next point smoothly?
Now program's UI stop for few second and all points are shown.