Tables for charts

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Chuck
Newbie
Newbie
Posts: 18
Joined: Tue Dec 13, 2005 12:00 am

Tables for charts

Post by Chuck » Wed Aug 30, 2006 10:42 am

Is it possible to add a small table to a chart that will show the min max values on the chart

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Aug 30, 2006 10:53 am

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:

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply