Hello
I've got a Fastline-Object and changing his Datasource-Property at runtime. My DataSource-object is a DataSet-Object. When the DataSource-Property is changed, the TChart have to repaint the FastLine proper to the new DataSource-Values. I do this via the CheckDataSource-Methode of the FastLine.
The problem is, that this is just working for the first time after the program-start and then it seems the dataSource have not be changed.
Here is the code
Public Property FastLine1_DataSource() As Object
Get
Return FastLine1.DataSource
End Get
Set(ByVal value As Object)
FastLine1.DataSource = value
FastLine1.CheckDataSource()
End Set
End Property
Any Ideas, maybe I don't use the right methods.
change DataSource of FastLine during runtime
Re: change DataSource of FastLine during runtime
Hello Rudi,
I recommend you take a look in demo project, concretely in the All features\Welcome !\Datasets\Single Record. I think this example can help you to achieve as you want.
I hope will help.
I recommend you take a look in demo project, concretely in the All features\Welcome !\Datasets\Single Record. I think this example can help you to achieve as you want.
I hope will help.
Best Regards,
Sandra Pazos / 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 |