Hello,
I have a XamDatachart and I have multiple NumericYAxis + multiple Titles:
look in the attached screenshot.
I would have a dynamic titles but the size of the labels is varying and I connot use a static TextBlocks.
Can you help me to have Dynamic title + Dynamic Y Axis. the position of Title should be relatif to Y Axis like this:
1 1 1
Title1 2 Title2 2 Title3 2 Chart
3 3 3
Regards.
Hello Anis,
After some research Axis Title has been determine as a new Product Idea. I have sent your Product Idea directly to our product management team. Our product team chooses new Product Ideas for development based on popular feedback from our customer base. Infragistics continues to monitor application development for all of our products, so as trends appear in requested ideas, we can plan accordingly.
We value your input, and our philosophy is to enhance our toolset based on customer feedback. If your idea is chosen for development, you will be notified at that time. Your reference number for this Product Idea is PI13010152
If you would like to follow up on your Product Idea at a later point, you may contact Developer Support management via email. Please include the reference number of your Product Idea in the subject and body of your email message. You can reach Developer Support management through the following email address: dsmanager@infragistics.com
Sorry for replying to such an old post, but how did you get the Y-Axis numbers in ascending order?
Awesome! Thanks so much!
There is IsInverted property in NumericYAxis you can set it to true:
<ig:XamDataChart.Axes> <ig:CategoryXAxis x:Name="XAxisBR" ItemsSource="{Binding Data}" Label="{}{X}"> <ig:CategoryXAxis.LabelSettings> <ig:AxisLabelSettings Location="OutsideBottom" Extent="25" /> </ig:CategoryXAxis.LabelSettings> </ig:CategoryXAxis> <ig:NumericYAxis x:Name="YAxisBR" IsInverted="True" Label="{}{:N1}"> <ig:NumericYAxis.LabelSettings> <ig:AxisLabelSettings Location="OutsideRight" Extent="45" /> </ig:NumericYAxis.LabelSettings> </ig:NumericYAxis> </ig:XamDataChart.Axes>