Hi John,
You can set the sampler provider of the strip to NMinorTickRangeSamplerProvider - by default it's NMajorTickRangeSamplerProvider. There is probably a bug when using interlacing in the control, which we'll investigate - but it should work Ok with bars as it starts from 0. I tested with the following code:
// configure chart
NCartesianChart chart = (NCartesianChart)nChartControl1.Charts[0];
// add dummy data
NBarSeries bar = new NBarSeries();
bar.Values.Add(10);
bar.Values.Add(20);
bar.Values.Add(30);
chart.Series.Add(bar);
NLinearScaleConfigurator scale = chart.Axis(StandardAxis.PrimaryY).ScaleConfigurator as NLinearScaleConfigurator;
scale.MinorTickCount = 1;
NScaleStripStyle strip = new NScaleStripStyle();
strip.SetShowAtWall(ChartWallType.Back, true);
strip.RangeSamplerProvider = new NMinorTickRangeSamplerProvider();
scale.StripStyles.Add(strip);
Hope this helps - let me know if you meet any problems.
Best regards,
Bob