In "OnButtonClicked" i use:
ChartControl.Dispatcher.InvokeAsync(() =>
{
// i.e. 5 bars ago from last bar
Print("start");
Values[0][5] =123;
Print("end");
});
I probably something stops the whole execution while I try to set plot value from there... any help?

Comment