How can i define the first 2 Plots in Panel 1 and the second 2 Plots in Panel 2?
protected override void Initialize()
{
Overlay = false;
Add(new Plot(Color.Lime, "Up"));
Add(new Plot(Color.Red, "Down"));
Add(new Plot(Color.Magenta, "Rising"));
Add(new Plot(Color.Navy, "Falling"));
}

Comment