Is this possible? All I have been able to do is get both right or both left
Next question is one of Z-order. I want the 2nd Plot to be in front of the first.
Here's a snippet for an example - comments out are what i've tried but no cigar.
protected override void Initialize()
{
Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Bar, "Plot0"));
// ScaleJustification = ScaleJustification.Right;
Add(new Plot(Color.FromKnownColor(KnownColor.Tan), PlotStyle.Bar, "Plot1"));
// ScaleJustification = ScaleJustification.Left;
// Overlay = false;
}

Comment