SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
Dear all,
I have to perform some operation inside a chart ViewPortManger.BeginInvoke()
Is there a way to know when the BeginInvoke() method is completed or do I have to implement an custom event ?
regards
Internally this is just wrapping Dispatcher.BeginInvoke. Your handler is the notification that its completed
ViewportManager.BeginInvoke(() =>
{
// Do something
// ..
// It's completed
});
It’s as simple as that
Please login first to submit.