Hi,
I am using XamWebTimeline and I want to edit the horizontal timeline labels as follows.
Min value = 10, Max value = 14
I want it to display as Oct, Nov, Dec, Jan,Feb.
Have a look at the attached sample application and screen shot.
Please provide a solution for this
You can try using DateTime values and format their labels. Try using this code:
<ig:DateTimeAxis AutoRange="False"
Minimum="01/01/2000"
Maximum="05/01/2001"
Unit="1"
UnitType="Months">
<ig:DateTimeAxis.LabelStyle>
<Style TargetType="ig:AxisLabel">
<Setter Property="StringFormat" Value="MMM" />
</Style>
</ig:DateTimeAxis.LabelStyle>
</ig:DateTimeAxis>
Thanks for the reply.
I am using NumericTimeAxis. And the value can be greater than 12, i.e if the value is 14, It should display FEB. And also I have display as Quarter1, Quarter2,etc. Please see the attached sample code.
How do I implement this?