Tables for charts
Tables for charts
Is it possible to add a small table to a chart that will show the min max values on the chart
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Chuck,
You could do something like in the All Features\Welcome !\New in Components\Chart Grid example at the features demo. The demo can be found at TeeChart's program group.
Another option would be manually retrieving those values and displaying them as you want, for example:
You could do something like in the All Features\Welcome !\New in Components\Chart Grid example at the features demo. The demo can be found at TeeChart's program group.
Another option would be manually retrieving those values and displaying them as you want, for example:
Code: Select all
label1.Text = points1.MaxYValue().ToString();
label2.Text = points1.MinYValue().ToString();
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 |