or
private void SetXAxisSettings(RadChart chart, double axisMin, double axisMax) { //Update the X Axis AxisX axisX = chart.DefaultView.ChartArea.AxisX; axisX.MinValue = axisMin; axisX.MaxValue = axisMax; } and, the following is the static settings I have in XAML
<telerik:AxisX LayoutMode="Between" LabelStep="1" Step="1" AutoRange="False" Title="Batch" /> 