Hi Jim,
You're very close - actually only the SynchronizeRulerOrientation property should be set to false in order to flip the labels on the right side. The following code displays a Y axis similar to the one in the attached chart:
NChart chart = nChartControl1.Charts[0];
NAxis axis = chart.Axis(StandardAxis.PrimaryY);
// set an anchor to the axis that has right orientation
NDockAxisAnchor anchor = new NDockAxisAnchor();
anchor.SynchronizeRulerOrientation = false;
anchor.RulerOrientation = RulerOrientation.Right;
axis.Anchor = anchor;
NStandardScaleConfigurator scale = axis.ScaleConfigurator as NStandardScaleConfigurator;
// hide inner ticks
scale.InnerMajorTickStyle.Length = new NLength(0);
scale.InnerMinorTickStyle.Length = new NLength(0);
scale.MinorTickCount = 1;
// hide first / last labels
scale.DisplayFirstLabel = false;
scale.DisplayLastLabel = false;
scale.Title.Text = "Inches";
scale.Title.Angle = new NScaleLabelAngle(ScaleLabelAngleMode.View, 0);
scale.Title.RulerAlignment = HorzAlign.Right;
scale.Title.ContentAlignment = ContentAlignment.TopRight;
Hope this helps -let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team