First, thanks for creating such a wonderful library! It has simplified my life a million times over.
Second, I am having an issue with the LargeTickStep property of a DateTimeAxis when used in C#. If I set it to anything (other than new TimeSpan(0)) I lose my axis ticks & axis value labels and my axis label is moved above the axis (it is shown under when LargeTickStep is 0). A couple of lines of code:
NPlot.DateTimeAxis xAx1 = new NPlot.DateTimeAxis(lstDates[0], lstDates[lstDates.Count - 1]);
xAx1.LargeTickStep = new TimeSpan(10,0,0,0);
xAx1.TicksLabelAngle = 90.0f;
xAx1.TickTextNextToAxis = false;
xAx1.FlipTicksLabel = true;
graphfrm.m_psGraph.XAxis1 = xAx1;
Thanks for your consideration and thanks again for such a great library.