Hi,
I have in VS designer a TChart component placed on a form and activated the ScrollPager like this:
When I run my sample application, I get this window:
The ScrollPager is positioned to minimum and maximum 0, which is acceptable because no data is available for Series.
Now when I load data pressing the Data button (= line1.FillSampleValues(100);) I get this:
The ScrollPager is still positioned to 0 and I can't move the minimum or maximum.
What's wrong? Do I need to use a 'redraw' and where can I find this?
ScrollPager not working properly
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: ScrollPager not working properly
The ScrollPager tool needs to be reassigned the series once this has had its data changed, i.e.The ScrollPager is still positioned to 0 and I can't move the minimum or maximum.
What's wrong? Do I need to use a 'redraw' and where can I find this?
Code: Select all
private void button4_Click(object sender, EventArgs e)
{
series1.FillSampleValues();
tool1.Series = series1;
}
Best Regards,
Christopher Ireland / 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 |
Re: ScrollPager not working properly
Like always, a simple answer .
Thanks Christoper.
Thanks Christoper.