One thing that I have found particularly annoying with the wpf charts, is that if you provide an unexpected data type (integer instead of double, for example), then the axis just wont draw.
Example:
<charts:BarSeries ItemsSource="{Binding TeamData}" XPath="Name" YPath="IterationsD" >
in the above bar series, the 'Iterations' is an integer value, but it would not render the bars. I had to Add a new property to return the value as doubles before the chart would work. Maybe I could have written a converter, but that is besides the point.
I have seen similar behavior with 'StackKind', except that at least there it throws an exception giving some indication of why it's not working.
This behavior is not only unintuitive, but counter-productive.