Hi Lou,
By default all series will scale on the PrimaryY axis - the following code shows how to tell a series to scale on the secondary Y axis only:
someSeries.DisplayOnAxis((int)StandardAxis.PrimaryY, false);
someSeries.DisplayOnAxis((int)StandardAxis.SecondaryY, true);
in other words you also have to disable the series from scaling on the primary Y.