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?
I understand. See the attached project. I’m restyling the labels and using a converter to change the output values.
Perfect fit for my requirement. Thanks.
I am able to hide the scene and display the labels on time line in version 9.2. But I am not able to do the same using Version 10.3 dlls. Please see the attached code for V9.2 and let me know how can I do the same using V10.3.
After version 9.2 the xamTimeline was redesigned and some of the styles are different.
In your case I think you can use xamZoombar + xamLinearGauge. Try the attached sample.