I tried to change color of marks on axis (small lines near numbers), but it didn't change them, instead they just disappear. Here is what I've tried:
<DVC:Chart.Axes>
<DVC:LinearAxis Orientation="X" Title="Id" Foreground="White"/>
<DVC:LinearAxis Orientation="Y" Location="Left" Title="Value" Foreground="White">
<DVC:LinearAxis.MajorTickMarkStyle>
<Style TargetType="Line">
<Setter Property="Control.Background" Value="Green" />
<Setter Property="Control.Foreground" Value="White" />
<Setter Property="Control.BorderBrush" Value="#FFFFA500" />
<Setter Property="Control.BorderThickness" Value="1" />
<Setter Property="Stroke" Value="Green"/>
<Setter Property="StrokeThickness" Value="1"/>
</Style>
</DVC:LinearAxis.MajorTickMarkStyle>
</DVC:LinearAxis>
</DVC:Chart.Axes>