Hello,
I want to add the data to the contour series when I click the button ,but it doesn't disappear. When I copy the same code in the Form_Load function ,it works well . Is there any thing I should to do? The attachment is my appliaction. Thanks!
add data to the contour when I click the button
add data to the contour when I click the button
- Attachments
-
- WindowsFormsApplication1.rar
- (34.02 KiB) Downloaded 762 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: add data to the contour when I click the button
Hello,
Yes, there seems to be a small problem with the Contour series here, however, it will work if you do:
before filling the series in the button click event.
Yes, there seems to be a small problem with the Contour series here, however, it will work if you do:
Code: Select all
contour1.Clear();
contour1.Dispose();
contour1 = new Steema.TeeChart.Styles.Contour(tChart1.Chart);
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 |