Hi
I have a bar chart
How to know the value of highest bar ? That is for example there are 3 bars. the tallest bar is 460 while the shortest is 200 on Yaxis. So I want a function or command to know the value of tallest bar in this case its (460).
How to find height of tallest bar in bar chart
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi shikha,
You can use MaxYValue property for that:
You can use MaxYValue property for that:
Code: Select all
double maxVal = bar1.MaxYValue();
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |