I set the ZOrder like this:
protected override void OnStateChange() {
// ...
if (State == State.Historical) {
SetZOrder(-1);
}
}
The indicators are drawn in the wrong ZOrder, but when I flip the -1 and 0, nothing changes.
The ZOrder has no effect.
What am I doing wrong?

Comment