I am using a Nevron Chart with a Smooth Line Series to graph a function. The function approaches very close to zero. The chart looks fine until I add in a Axis title using:
NStandardScaleConfigurator scaleConfiguratorX = (NStandardScaleConfigurator)chart.Axis(StandardAxis.PrimaryX).ScaleConfigurator;
scaleConfiguratorX.Title.Text = "Match Percent";
when I do this it shifts up the X-axis a little to add in the text. This cuts off the bottom of my graph and I can no longer see that it is approaching zero. How can I make it so that this does not happen?