Trying to set intervals in xaml but am getting the error "Only public or internal classes can be used within markup. 'Interval' type is not public or internal.".
Am I missing something? - pulled implementation from an example.
<chart:SfDateTimeRangeNavigator x:Name="RangeNavigator"
Minimum="2015/5/18" Maximum="2015/5/18"
ViewRangeStart="2015/5/18" ViewRangeEnd="2015/5/19"
ShowGridLines="True" ShowToolTip="True"
ItemsSource="{Binding StockPriceDetails}" XBindingPath="_Date" Height="179">
<chart:SfDateTimeRangeNavigator.Intervals>
<chart:Interval IntervalType="Quarter"/>
<chart:Interval IntervalType="Month"/>
</chart:SfDateTimeRangeNavigator.Intervals>
<chart:SfDateTimeRangeNavigator.Content>