Yes you can. Set your Minimum and Maximum values and set your Interval as the difference between Minimum and Maximum.
ie:
<toolkit:LinearAxis Minimum="0" Orientation="X" Maximum="105" Interval="105"/>
UPDATE: (for DateTimeAxis)
It is a little harder to fix the DateTimeAxis. Here's my solution via IValueConverter:
public class AxisFormatter : IValueConverter
{
public Object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (DateTime.Parse(value.ToString()) != maxDate && DateTime.Parse(value.ToString() != minDate)
return null;
else
return value;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
where minDate and maxDate are your hard-coded values for the upper and lower bounds of your axis.
Also, you will need to implement this Converter via the AxisLabelStyle of your axis. Thus, in your Styles.xaml or wherever you store your styles, place this style:
<Style x:Key="DateTimeAxisLabelStyle1" TargetType="charting:DateTimeAxisLabel">
<Setter Property="IsTabStop" Value="False"/>
<Setter Property="YearsIntervalStringFormat" Value="{}{0:yyyy}"/>
<Setter Property="MonthsIntervalStringFormat" Value="{}{0:d}"/>
<Setter Property="WeeksIntervalStringFormat" Value="{}{0:d}"/>
<Setter Property="DaysIntervalStringFormat" Value="{}{0:d}"/>
<Setter Property="HoursIntervalStringFormat" Value="{}{0:t}"/>
<Setter Property="MinutesIntervalStringFormat" Value="{}{0:t}"/>
<Setter Property="SecondsIntervalStringFormat" Value="{}{0:T}"/>
<Setter Property="MillisecondsIntervalStringFormat" Value="{}{0:mm:ss.fff}"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="charting:DateTimeAxisLabel">
<TextBlock DataContext="{TemplateBinding FormattedContent}" Text="{Binding Converter={StaticResource axisFormatter}}"></TextBlock>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
and add xmlns:local="clr-namespace:YOURPROJECTNAME to your XAML file as well as adding
local:AxisFormatter x:Key="AxisFormatter"
to your resource dictionary.
Then in your axis's actual XAML declaration, put it as shown below;
<toolkit:DateTimeAxis AxisLabelStyle="{StaticResource DateTimeAxisLabelStyle1}" Orientation="X" />
Sorry that this solution is kind of complicated, and let me know if you need further guidance.