Hi Carlos,
When you specify the ticks in this way it actually means that the ticks are power of ten. This leads to very large numbers that are outside the axis range. To fix the problem you need to specify that the ticks should not be transformed - for example:
NChart chart = nChartControl1.Charts[0];
NPointSeries bar = new NPointSeries();
bar.Values.Add(10);
bar.Values.Add(20);
bar.Values.Add(10000);
chart.Series.Add(bar);
NLogarithmicScaleConfigurator scale = new NLogarithmicScaleConfigurator();
scale.CustomMajorTicks = new NDoubleList(new double[] { 1, 10, 100, 1000, 10000 });
scale.TransformScale = false;
scale.MajorTickMode = MajorTickMode.CustomTicks;
scale.LogarithmBase = 10;
chart.Axis(StandardAxis.PrimaryY).ScaleConfigurator = scale;
Best Regards,
Nevron Support Team