I am reading a file with X and Y values.
before adding the values to a Serie, I set :
Code: Select all
frm.TChart1.AutoRepaint = false.
Code: Select all
frm.TChart1.Series(0).AddXY Xdata, Ydata, "", &H80&
Code: Select all
frm.TChart1.AutoRepaint = True
frm.TChart1.Repaint
After the Repaint method, the chart do not have any point. If I check the count property of the chart, it has at least one point:
frm.TChart1.Series(0).count
returns the value 1 or greater.So my question, when does teechart decides to display the data on the chart ?
Regards.
Angelo