Is it possible to plot a time / value series. I want the Unit to refer to the minute section of the date. Is this possible or i have to amend the data ?
Below is the XAML i am using
<igCA:Axis AxisType="PrimaryX" AutoRange="False" Minimum="{Binding Converter={StaticResource DateConverter1}, ConverterParameter=20/2/08 22:20:00}" Maximum="{Binding Converter={StaticResource DateConverter1}, ConverterParameter=20/2/08 22:30:00}" Unit="1"> <igCA:Axis.MinorTickMark> <igCA:Mark Unit=".2" Stroke="Red"/> </igCA:Axis.MinorTickMark> </igCA:Axis>
My problem is that the chart is not showing the Maximum label on the x-axis it is only showing the minimum label when setting the Unit to the suggested value. Any idea why? Also is there any particular reason why the number of ticks needed to be 60 hours?
The DateConverter1 is using the ToOADate() function of the date.
Minimum="{Binding Converter={StaticResource DateConverter1}, ConverterParameter=05/03/2008 19:03}"
Maximum="{Binding Converter={StaticResource DateConverter1}, ConverterParameter=05/03/2008 19:10}" Unit="2160000000000">