Where would I put my StringFormat={}{0:C} to make the axis label have currency formatting?
<DVC:LinearAxis Orientation="X" Interval="500000" ShowGridLines="True" Minimum="0" >
<DVC:LinearAxis.AxisLabelStyle>
<Style TargetType="DVC:AxisLabel">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="DVC:AxisLabel">
<TextBlock Text="{TemplateBinding FormattedContent}">
<TextBlock.LayoutTransform>
<RotateTransform Angle="60"/>
</TextBlock.LayoutTransform>
</TextBlock>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</DVC:LinearAxis.AxisLabelStyle>
</DVC:LinearAxis>