Hi
Isit possible to format the XAxis similar to the image above? .How can i do it having strips on the axis.
Hello,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.
Thanks for the Solution.It worked for me.
Thanks
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
Thank you for your post. I have been looking into it and I can suggest you add the following code in your XAxis:
<ig:CategoryXAxis.Label> <DataTemplate> <StackPanel Margin="0,-10,0,0" Orientation="Vertical" HorizontalAlignment="Right"> <Border Background="Gray" Width="1" Height="15"/> <TextBlock Text="{Binding Item.Country}"/> </StackPanel> </DataTemplate> </ig:CategoryXAxis.Label>
You just need to change the Binding path, because in my case the Property I wanted to show was “Country”. Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.