Page 1 of 1
Tables for charts
Posted: Wed Aug 30, 2006 10:42 am
by 9089490
Is it possible to add a small table to a chart that will show the min max values on the chart
Posted: Wed Aug 30, 2006 10:53 am
by narcis
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();