In DevExpress charts on Winforms I have multiple panes on a chart and it's working beautifully.
However, all three panes each have a Y Axis label and a horizontal scroll bar... they do keep in sync with one another... but I really only need one.
I figured out how to turn off the Y Axis in two of the panes by using:
diagram.AxisX.SetVisibilityInPane(false, volumeView.Pane);
diagram.AxisX.SetVisibilityInPane(false, exchangeRateView.Pane);
Is there some similar technique I can use to turn off the visibility of the scroll bar in two of my panes?